add rustfmt, clippy validation

This commit is contained in:
yggverse 2024-12-04 05:51:22 +02:00
parent b4d9686db5
commit eccf5da808

View file

@ -16,6 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run rustfmt
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all-targets
- name: Build
run: cargo build --verbose
- name: Run tests