diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e9861ca408..698f2f9ee0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -122,6 +122,11 @@ jobs: CARGO_INCREMENTAL=0 RUSTFLAGS='-Cinstrument-coverage' LLVM_PROFILE_FILE='./target/debug/coverage/cargo-test-%p-%m.profraw' cargo test --all-features --workspace --all grcov . -s ./target/debug/coverage/ --binary-path ./target/debug/ -t lcov --branch --ignore-not-existing -o ./target/debug/coverage/lcov.info + - name: Check Rust formatting + working-directory: ./rust + run: | + cargo fmt -- --check + - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 with: