We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70d172 commit d90d157Copy full SHA for d90d157
.github/workflows/ci.yml
@@ -0,0 +1,13 @@
1
+on: [push, pull_request]
2
+
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-24.04
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - uses: dtolnay/rust-toolchain@stable
9
+ - uses: Swatinem/rust-cache@v2
10
+ - run: cargo build
11
+ - run: cargo test
12
+ - run: cargo clippy --no-deps -- -D warnings
13
+ - run: cargo fmt -- --check
0 commit comments