Update clippy version in CI and fix new lints #2413
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: der | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/der.yml" | |
- "const-oid/**" | |
- "der/**" | |
- "Cargo.*" | |
push: | |
branches: master | |
defaults: | |
run: | |
working-directory: der | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.65.0 # MSRV | |
- stable | |
target: | |
- thumbv7em-none-eabi | |
- wasm32-unknown-unknown | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
targets: ${{ matrix.target }} | |
- uses: RustCrypto/actions/cargo-hack-install@master | |
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features std,arbitrary | |
minimal-versions: | |
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master | |
with: | |
working-directory: ${{ github.workflow }} | |
test: | |
strategy: | |
matrix: | |
include: | |
# 32-bit Linux | |
- targets: i686-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: 1.65.0 # MSRV | |
deps: sudo apt update && sudo apt install gcc-multilib | |
- targets: i686-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: stable | |
deps: sudo apt update && sudo apt install gcc-multilib | |
# 64-bit Linux | |
- targets: x86_64-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: 1.65.0 # MSRV | |
- targets: x86_64-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: stable | |
# temporary disable, since cargo-hack installation does not work yet | |
# 64-bit Windows | |
#- targets: x86_64-pc-windows-msvc | |
# platform: windows-latest | |
# rust: 1.65.0 # MSRV | |
#- targets: x86_64-pc-windows-msvc | |
# platform: windows-latest | |
# rust: stable | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
targets: ${{ matrix.target }} | |
- run: ${{ matrix.deps }} | |
- uses: RustCrypto/actions/cargo-hack-install@master | |
- run: cargo hack test --feature-powerset | |
derive: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.65.0 # MSRV | |
- stable | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: RustCrypto/actions/cargo-hack-install@master | |
- run: cargo hack test --feature-powerset | |
working-directory: der/derive |