Skip to content

Commit

Permalink
ci(build): reverse order of fmt/clippy/build
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeStanger committed Nov 30, 2022
1 parent 862c46c commit 3745864
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
- name: Install build deps
run: sudo apt install libgtk-3-dev libgtk-layer-shell-dev

- name: Build
run: cargo build --verbose
- name: Check formatting
run: cargo fmt --check

- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

- name: Check formatting
run: cargo fmt --check
- name: Build
run: cargo build --verbose

- name: Run tests
uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 3745864

Please sign in to comment.