From d9b06c990e22036f73f54ee1741519f95858243d Mon Sep 17 00:00:00 2001 From: Phani Pavan K Date: Fri, 29 Aug 2025 11:13:09 +0530 Subject: [PATCH] shorter CI --- .gitea/workflows/build.yaml | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index d179058..9cc1f15 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,30 +1,15 @@ on: [push, pull_request] jobs: - check: - name: Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions-rust-lang/setup-rust-toolchain@v1 - - run: cargo check - - format: - name: Format - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions-rust-lang/setup-rust-toolchain@v1 - - run: rustup component add rustfmt - - run: cargo fmt --all -- --check - - Clippy: - name: Clippy + QC: + name: Quality Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: rustup component add clippy + - run: rustup component add rustfmt + - run: cargo fmt --all -- --check - run: cargo clippy -- Build: