Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/test32bit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- name: Install rust tooling for 32 bit builds
run: |
rustup target install i686-unknown-linux-gnu
- name: Install rust toolchain
run: |
rustup toolchain install
- name: cargo check
run: |
cargo hack check --all-targets --target=i686-unknown-linux-gnu --feature-powerset
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
- uses: taiki-e/install-action@cargo-hack
- run: sudo apt-get update -y
if: matrix.os == 'ubuntu-24.04'
- name: update toolchain
run: rustup toolchain install
- name: cargo check (powerset)
run: cargo hack check --feature-powerset --no-dev-deps
- name: cargo check examples (powerset)
Expand Down Expand Up @@ -74,6 +76,8 @@ jobs:
components: clippy
- uses: Swatinem/rust-cache@v2.7.5
- uses: taiki-e/install-action@cargo-hack
- name: update toolchain
run: rustup toolchain install
- name: clippy (all targets, feature powerset)
run: cargo hack clippy --all-targets --feature-powerset -- -D warnings

Expand Down
5 changes: 5 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[toolchain]
channel = "1.87.0"
components = [ "rustfmt", "clippy" ]
targets = ["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"]
profile = "minimal"
Loading