We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f7b1d commit 00e14d3Copy full SHA for 00e14d3
1 file changed
.github/workflows/rust.yml
@@ -0,0 +1,27 @@
1
+name: Rust
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Check
19
+ run: |
20
+ cargo check --verbose
21
+ cargo clippy --verbose
22
+ - name: Build
23
24
+ cargo build --verbose
25
+ - name: Tests
26
27
+ cargo test --verbose
0 commit comments