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
8 changes: 4 additions & 4 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: hecrj/setup-rust-action@v2
with:
components: rustfmt
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: cargo fmt --check

lint:
Expand All @@ -28,7 +28,7 @@ jobs:
uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: cargo clippy --all-targets --all-features -- -D warnings

compile:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
with:
rust-version: stable
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Test
run: cargo test --all-features

Expand All @@ -75,7 +75,7 @@ jobs:
version: latest
use-tool-cache: true
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Coverage
run: cargo tarpaulin --workspace --follow-exec --engine Llvm -o Lcov --output-dir ./coverage
- name: Upload coverage reports to Codecov
Expand Down
Loading