diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2a97802..e6a57a1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,5 +18,9 @@ jobs: - uses: actions/checkout@v3 - name: Build run: cargo build --verbose - - name: Run tests - run: cargo test --verbose + - name: Check + run: cargo check --verbose + - name: Clippy + run: cargo clippy --verbose + - name: Tests + run: cargo test --verbose