diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml index 9c7cd22..bcb2a69 100644 --- a/.gitea/workflows/gitea-ci.yaml +++ b/.gitea/workflows/gitea-ci.yaml @@ -10,12 +10,18 @@ env: CARGO_TERM_COLOR: always jobs: - pipeline: - name: Pipeline + build_and_test: + name: Build and Test container: docker.io/drrobot/musichoard-ci:rust-1.75 steps: - uses: actions/checkout@v3 - run: cargo build --verbose --all-features --all-targets - run: cargo test --verbose --all-features --all-targets --no-fail-fast + + lint: + name: Lint + container: docker.io/drrobot/musichoard-ci:rust-1.75 + steps: + - uses: actions/checkout@v3 - run: cargo clippy --verbose --all-features --all-targets -- -D warnings - run: cargo fmt --verbose -- --check