Skip to content

Commit 8eab7a6

Browse files
committed
Initial attempt at CI
1 parent dae9bda commit 8eab7a6

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)