Skip to content

Commit

Permalink
iox-#5 Squash me clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Jun 25, 2022
1 parent f8fdc20 commit 5d1486c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ jobs:
~/.cargo/git/db/
target/
key: cache-${{ runner.os }}-toolchain-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.toml') }}-${{ hashFiles('**/build.rs') }}
- if: startsWith(matrix.os, 'ubuntu-latest') == true
- if: runner.os == 'Linux'
name: Install dependencies
run: |
sudo apt update
sudo apt install -y libacl1-dev libncurses5-dev
- name: Build
run: cargo build --all --examples
- if: startsWith(matrix.os, 'ubuntu-latest') == true && startsWith(matrix.toolchain, 'stable') == true
- if: runner.os == 'Linux' && matrix.toolchain == 'stable'
name: Run clippy # clippy can reuse the previous build artifacts
run: cargo clippy
- name: Run tests
Expand Down

0 comments on commit 5d1486c

Please sign in to comment.