We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef125f9 commit 3b8c7e2Copy full SHA for 3b8c7e2
1 file changed
.github/workflows/style_check.yml
@@ -0,0 +1,15 @@
1
+name: Style check
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ header_check:
6
+ runs-on: ubuntu-latest
7
+ name: Check code style
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Rust lints using Clippy
11
+ working-directory: gc/mmtk
12
+ run: cargo clippy
13
+ - name: Rust code format check
14
15
+ run: cargo fmt --check
0 commit comments