Skip to content

Commit d90d157

Browse files
committed
.github: Create a GitHub Action
1 parent b70d172 commit d90d157

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

+13
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)