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 @@ -6,19 +6,19 @@ jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: cargo fmt --all -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: cargo clippy --all --all-targets -- -Dwarnings

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Test all-targets
run: cargo test --workspace --all-targets
- name: Test docs
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
name: Build-test docs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Document all crates
env:
RUSTDOCFLAGS: -Dwarnings
Expand Down