We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae7d206 commit f6f4f81Copy full SHA for f6f4f81
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+env:
8
+ CARGO_TERM_COLOR: always
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ toolchain:
16
+ - stable
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - name: use stable toolchain
21
+ uses: dtolnay/rust-toolchain@master
22
+ with:
23
+ toolchain: stable
24
+ - name: build
25
+ run: cargo build --verbose
26
0 commit comments