Skip to content

Commit

Permalink
ci: try fixing ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Jan 24, 2025
1 parent 7872131 commit 426a265
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,15 @@ jobs:
- name: Install Rust ${{ matrix.rust }}
run: |
rustup install ${{ matrix.rust }}
rustup default ${{ matrix.rust }}
rustup component add clippy ${{ matrix.rust }}
- name: Install dependencies
run: ${{ matrix.install }}

- name: Check
run: cargo check --workspace ${{ matrix.args }}
run: cargo +${{ matrix.rust }} check --workspace ${{ matrix.args }}

- name: Clippy
run: cargo clippy --all-targets --tests --bins --all -- -D warnings
run: cargo +${{ matrix.rust }} clippy --all-targets --tests --bins --all -- -D warnings

- name: Test
run: cargo test --workspace ${{ matrix.args }} -- --nocapture
run: cargo +${{ matrix.rust }} test --workspace ${{ matrix.args }} -- --nocapture

0 comments on commit 426a265

Please sign in to comment.