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 3405fd2 commit ca8f875Copy full SHA for ca8f875
.github/workflows/rust.yml
@@ -0,0 +1,26 @@
1
+name: "Test Suite"
2
+on:
3
+ push:
4
+ pull_request:
5
+
6
+jobs:
7
+ test:
8
+ name: cargo test
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v5
12
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
13
+ - run: cargo test
14
15
+ # Check formatting with rustfmt
16
+ formatting:
17
+ name: cargo fmt
18
19
20
21
+ # Ensure rustfmt is installed and setup problem matcher
22
23
+ with:
24
+ components: rustfmt
25
+ - name: Rustfmt Check
26
+ uses: actions-rust-lang/rustfmt@v1
0 commit comments