Skip to content

style: Address clippy lints due to rust 1.72.0 (#535) #1098

style: Address clippy lints due to rust 1.72.0 (#535)

style: Address clippy lints due to rust 1.72.0 (#535) #1098

Workflow file for this run

on:
push:
branches: [main, dev]
pull_request:
name: 32 bit CI
jobs:
test-32bit:
name: Run tests (32 bit)
runs-on: ${{ matrix.os }}
#container:
# image: ubuntu:20.10
strategy:
matrix:
os: [ubuntu-latest]
rust:
- stable
- 1.71.0
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack
- name: Install Linux tooling for 32 bit builds
run: |
sudo apt-get update -y
sudo apt-get -f install gcc-multilib
- name: Install rust tooling for 32 bit builds
run: |
rustup target install i686-unknown-linux-gnu
- name: cargo check
run: |
cargo hack check --all-targets --target=i686-unknown-linux-gnu --feature-powerset
- name: cargo tests
run: |
cargo hack test --target=i686-unknown-linux-gnu --feature-powerset
- name: cargo doc tests
run: |
cargo hack test --doc --target=i686-unknown-linux-gnu --feature-powerset