Skip to content

Commit 07c557b

Browse files
committed
ci: setup GH actions for tests
1 parent be86bc9 commit 07c557b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
10+
jobs:
11+
check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check out repository code
15+
uses: actions/checkout@v2
16+
17+
- name: Cache Rust
18+
uses: Swatinem/rust-cache@v1
19+
20+
- name: Test Rust
21+
run: cargo test

0 commit comments

Comments
 (0)