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 9305c96 commit 601ec81Copy full SHA for 601ec81
.github/workflows/rust.yml
@@ -0,0 +1,25 @@
1
+name: Rust
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request: {}
8
9
+jobs:
10
+ check-format:
11
+ runs-on: ubuntu-22.04
12
+ steps:
13
+ - uses: actions/checkout@v1
14
+ - uses: actions-rs/cargo@v1
15
+ with:
16
+ command: fmt
17
+ args: -- --check
18
19
+ clippy:
20
21
22
23
24
25
+ command: clippy
0 commit comments