There was an error while loading. Please reload this page.
1 parent 911d241 commit cbabbddCopy full SHA for cbabbdd
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main, master ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Install Rust
20
+ uses: dtolnay/rust-toolchain@stable
21
22
+ - name: Build
23
+ run: cargo build --verbose
24
25
+ - name: Run tests
26
+ run: cargo test --lib --verbose
0 commit comments