1 parent dae9bda commit 8eab7a6Copy full SHA for 8eab7a6
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+---
2
+name: CI
3
+
4
+on:
5
+ push:
6
+ pull_request:
7
+ workflow_dispatch:
8
9
+jobs:
10
+ ci:
11
+ runs-on: ubuntu-latest
12
+ timeout-minutes: 15
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
16
+ with:
17
+ components: clippy, rustfmt
18
+ rustflags: ""
19
+ - run: cargo fmt --check
20
+ - run: cargo clippy
21
+ - run: cargo build --release
0 commit comments