Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check formatting of all crates in the workspace
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
run: cargo fmt --all -- --check
- name: Run cargo test --all
uses: actions-rs/cargo@v1
with:
command: test
args: --all
run: cargo test --all
- name: Run cargo test --all-targets
uses: actions-rs/cargo@v1
with:
command: test
args: --all-targets
run: cargo test --all-targets
conclusion:
needs:
- rust-test
Expand Down
Loading