From 0447332d2b1292f4204a80c0019cda98b62d25e7 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 10:30:46 +0000 Subject: [PATCH] Add Gitea Actions workflow: ci.yml --- .gitea/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2dcefad..d651e03 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,10 +1,10 @@ -name: Rust CI +name: CI on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: build: @@ -14,10 +14,10 @@ jobs: - name: Set up Rust run: rustup default stable - name: Build - run: cargo build --all-features + run: cargo build --all-features --verbose - name: Run tests - run: cargo test --all-features + run: cargo test --all-features --verbose - name: Check formatting - run: cargo fmt --check + run: cargo fmt --check --all - name: Run clippy run: cargo clippy --all-features -- -D warnings