We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b681ad commit ae08530Copy full SHA for ae08530
.github/workflows/syntax-checks.yaml
@@ -47,3 +47,18 @@ jobs:
47
BASE_BRANCH: ${{ github.base_ref }}
48
MERGE_BRANCH: ${{ github.ref }}
49
run: ./.github/workflows/pull-request-check-cpplint.sh
50
+
51
+ # This job should take about a minute (est)
52
+ check-rustfmt:
53
+ runs-on: ubuntu-latest
54
+ steps:
55
+ - name: Checkout CBMC repository
56
+ uses: actions/checkout@v3
57
+ - name: Install latest stable Rust toolchain
58
+ uses: actions-rs/toolchain@v1
59
+ with:
60
+ toolchain: stable
61
+ override: true
62
+ components: rustfmt, clippy
63
+ - name: Run `cargo fmt` on top of Rust API project
64
+ run: cd src/libcprover-rust; cargo fmt --all -- --check
0 commit comments