aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/test.yml')
-rw-r--r--.gitea/workflows/test.yml20
1 files changed, 17 insertions, 3 deletions
diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml
index 56f08ce..516aae8 100644
--- a/.gitea/workflows/test.yml
+++ b/.gitea/workflows/test.yml
@@ -3,11 +3,25 @@ name: Test
on: [push, pull_request]
jobs:
+ lint:
+ name: Lint
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v6
+ - uses: dtolnay/rust-toolchain@stable
+ with:
+ components: clippy
+ - name: Cargo check
+ run: cargo check --workspace --all-targets --all-features
+ - name: Clippy (deny warnings)
+ run: cargo clippy --workspace --all-targets --all-features -- -D warnings
+
test:
- name: cargo test
+ name: Test
runs-on: ubuntu-latest
+ needs: lint
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- - run: cargo check --all
- - run: cargo test --all-features
+ - name: Cargo test
+ run: cargo test --workspace --all-features