From 7425f1b8c54fe9e66efb37d8f6a2956899355759 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 09:47:36 +0000 Subject: [PATCH] fix: Format CI workflow with proper syntax --- .gitea/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 23ce8f7..0c748bb 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -2,16 +2,16 @@ name: CI on: push: - branches: [main] + branches: [ main ] pull_request: - branches: [main] + branches: [ main ] jobs: test: + name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Verify Rust toolchain - run: | - cargo --version - rustc --version + - name: Checkout code + uses: actions/checkout@v4 + - name: Verify Rust + run: cargo --version