Apply clippy suggestions #337
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: macos-latest | |
| target: x86_64-apple-darwin | |
| rust: 1.63.0 | |
| - os: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| rust: 1.63.0 | |
| - os: ubuntu-latest | |
| target: i686-unknown-linux-gnu | |
| rust: 1.63.0 | |
| - os: windows-latest | |
| target: i686-pc-windows-msvc | |
| rust: 1.63.0 | |
| - os: windows-latest | |
| target: x86_64-pc-windows-msvc | |
| rust: 1.63.0 | |
| - os: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| rust: stable | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| targets: ${{ matrix.target }} | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install linker | |
| if: matrix.target == 'i686-unknown-linux-gnu' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install gcc-multilib | |
| - name: Test | |
| run: cargo test --all-features --target ${{ matrix.target }} | |
| lint: | |
| name: Linting (fmt + clippy) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Lint check | |
| run: cargo lint | |
| - name: Format check | |
| run: cargo format-check |