1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-18 05:28:09 +00:00

ci: Fix cargo fmt step

This commit is contained in:
Anichitei Ionel-Cristinel 2021-10-19 18:15:51 +03:00 committed by GitHub
parent b57bf183b1
commit 5ea879a9a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,4 +29,8 @@ jobs:
- name: Run clippy
run: cargo clippy --manifest-path rsbddisasm/Cargo.toml
- name: Run format checks
run: cargo fmt -- --check --manifest-path rsbddisasm/Cargo.toml
run: |
cd rsbddisasm
cargo fmt -- --check
cd ..