Skip to content

Commit

Permalink
Actually install clippy this time
Browse files Browse the repository at this point in the history
  • Loading branch information
gianzellweger authored Feb 3, 2024
1 parent 73b5074 commit 2e0df7e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get install -y libgtk-3-dev libsoup2.4-dev libjavascriptcoregtk-4.0-dev libwebkit2gtk-4.0-dev
- name: Install Clippy
run: rustup component add clippy --toolchain nightly-x86_64-unknown-linux-gnu
- name: Clippy
run: cargo clippy
- name: Build
Expand All @@ -27,6 +29,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Clippy
run: rustup component add clippy --toolchain nightly-x86_64-pc-windows-msvc
- name: Clippy
run: cargo clippy
- name: Build
Expand All @@ -38,6 +42,8 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install Clippy
run: rustup component add clippy --toolchain nightly-x86_64-apple-darwin
- name: Clippy
run: cargo clippy
- name: Build
Expand Down

0 comments on commit 2e0df7e

Please sign in to comment.