Skip to content
Open
Show file tree
Hide file tree
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
with:
key: partition-${{ matrix.partition }}
- name: Install just, cargo-hack, and cargo-sync-rdme
uses: taiki-e/install-action@v2
uses: taiki-e/install-action@cf525cb33f51aca27cd6fa02034117ab963ff9f1 # v2
with:
tool: just,cargo-hack,cargo-sync-rdme
- name: Lint (clippy)
Expand All @@ -35,7 +35,7 @@ jobs:
run: just rustdoc
# Pin to a specific nightly for compatibility with cargo-sync-rdme.
- name: Install nightly toolchain for cargo-sync-rdme
uses: dtolnay/rust-toolchain@master
uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master
with:
toolchain: nightly-2025-08-31
- name: Regenerate readmes
Expand All @@ -57,15 +57,15 @@ jobs:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: dtolnay/rust-toolchain@master
- uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master
with:
toolchain: ${{ matrix.rust-version }}
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
with:
key: partition-${{ matrix.partition }}
- uses: taiki-e/install-action@cargo-hack
- uses: taiki-e/install-action@just
- uses: taiki-e/install-action@nextest
- uses: taiki-e/install-action@39d95ebba306bd520caaadb52f7f4d354fc8a338 # cargo-hack
- uses: taiki-e/install-action@e0475f5c1b710607c5f74c0e9f71a9d5f0b62aa5 # just
- uses: taiki-e/install-action@e537394e10461340f56469a03c3e73f1705074a9 # nextest
- name: Build
run: just powerset --partition ${{ matrix.partition }}/10 build
- name: Run tests
Expand All @@ -86,11 +86,11 @@ jobs:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: dtolnay/rust-toolchain@master
- uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master
with:
toolchain: ${{ matrix.rust-version }}
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
- uses: taiki-e/install-action@cross
- uses: taiki-e/install-action@33e66c8bd28665dcc86c65a058eae26faf2fe0dd # cross
- name: Check
run: cross check --target thumbv7em-none-eabi --no-default-features -p iddqd

Expand All @@ -101,13 +101,13 @@ jobs:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: dtolnay/rust-toolchain@master
- uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master
with:
toolchain: nightly
components: miri
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
- uses: taiki-e/install-action@cargo-hack
- uses: taiki-e/install-action@nextest
- uses: taiki-e/install-action@39d95ebba306bd520caaadb52f7f4d354fc8a338 # cargo-hack
- uses: taiki-e/install-action@e537394e10461340f56469a03c3e73f1705074a9 # nextest
# Run tests for all crates containing unsafe code. Currently, that's just
# iddqd.
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
- name: Install cargo release
uses: taiki-e/install-action@62da238c048aa0f865cc5a322082957d34e7fc1a # v2
with:
Expand Down
Loading