Skip to content

Commit 7efc298

Browse files
committed
ci: add GitHub Actions pipeline
1 parent b17b75f commit 7efc298

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Install Rust
16+
uses: dtolnay/rust-toolchain@stable
17+
18+
- name: Cargo check
19+
run: cargo check
20+
21+
- name: Run tests
22+
run: cargo test

0 commit comments

Comments
 (0)