Skip to content

Commit

Permalink
ci: cargo test instead of cargo check
Browse files Browse the repository at this point in the history
  • Loading branch information
eladyn committed Feb 24, 2025
1 parent 2e17d9e commit 88e145b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
- 'contrib/spotifyd.conf'

jobs:
codestyle:
Expand Down Expand Up @@ -50,7 +51,7 @@ jobs:
command: clippy
args: --all-targets --all-features -- -D warnings

check:
test:
needs: [lint]
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -83,5 +84,5 @@ jobs:
- name: Checking Rust code
uses: actions-rs/cargo@v1
with:
command: check
command: test
args: --locked --no-default-features --features ${{ matrix.features }}

0 comments on commit 88e145b

Please sign in to comment.