fix clippy order

This commit is contained in:
yggverse 2024-12-04 05:32:19 +02:00
parent b631822977
commit 00e211173d

View File

@ -19,10 +19,10 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Run rustfmt - name: Run rustfmt
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Install system packages
run: sudo apt install -y libgtk-4-dev libadwaita-1-dev libsqlite3-dev
- name: Run clippy - name: Run clippy
run: cargo clippy --all-targets run: cargo clippy --all-targets
- name: Install system packages
run: sudo apt install -y libgtk-4-dev libglib2.0-dev libadwaita-1-dev libsqlite3-dev
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Run tests - name: Run tests