Skip to content

Commit

Permalink
Add check for dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Wiktor Kwapisiewicz <[email protected]>
  • Loading branch information
wiktor-k committed Apr 4, 2024
1 parent 7a2f3b4 commit d5c1a94
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,22 @@ jobs:
- run: cargo install --locked just
- name: Run unit tests
run: just tests


deps:
name: Check dependencies
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: cargo install --locked just cargo-deny
- name: Run unit tests
run: just dependencies

lints:
name: Clippy lints
strategy:
Expand Down

0 comments on commit d5c1a94

Please sign in to comment.