Skip to content
Merged
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
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: rustfmt
components: rustfmt, clippy

- name: Check formatting
run: cargo fmt --all --check
Expand All @@ -103,6 +103,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: rustfmt, clippy

- name: Check locked Cargo metadata
run: cargo metadata --locked --no-deps --format-version 1
Expand Down Expand Up @@ -137,6 +138,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: rustfmt, clippy

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.10
Expand Down Expand Up @@ -168,7 +170,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: clippy
components: rustfmt, clippy

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.10
Expand Down Expand Up @@ -205,6 +207,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: rustfmt, clippy

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.10
Expand Down Expand Up @@ -237,6 +240,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: rustfmt, clippy

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.10
Expand Down Expand Up @@ -282,7 +286,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: clippy
components: rustfmt, clippy

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.10
Expand Down Expand Up @@ -369,7 +373,7 @@ jobs:
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly-2026-07-10
components: clippy
components: rustfmt, clippy

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.10
Expand Down
Loading