ci(build): reverse order of fmt/clippy/build

This commit is contained in:
Jake Stanger 2022-11-30 22:56:44 +00:00
parent 862c46c7ec
commit 37458642df
No known key found for this signature in database
GPG Key ID: C51FC8F9CB0BEA61

View File

@ -25,8 +25,8 @@ 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
@ -34,8 +34,8 @@ jobs:
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