We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82601ad commit 4fae351Copy full SHA for 4fae351
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build-test-lint:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Install Rust toolchain
20
+ uses: dtolnay/rust-toolchain@stable
21
+ with:
22
+ components: clippy, rustfmt
23
24
+ - name: Run make (build, test, lint)
25
+ run: make
0 commit comments