Skip to content

Commit 6dae50f

Browse files
committed
Add basic CI
1 parent fb518a3 commit 6dae50f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
env:
12+
RUST_BACKTRACE: full
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
- name: Build
21+
run: cargo build --verbose
22+
- name: Test
23+
run: cargo test --verbose
24+
- name: Clippy
25+
run: cargo clippy --verbose

0 commit comments

Comments
 (0)