Swap format and lint steps in CI

This commit is contained in:
Juno Takano 2025-12-14 06:22:03 -03:00
commit 94bae39c21

View file

@ -14,10 +14,10 @@ jobs:
- name: build
run: cargo build
- name: format
run: cargo fmt -- --check
- name: lint
run: cargo clippy -- -Dwarnings
- name: format
run: cargo fmt -- --check
- name: test
run: cargo test