Skip to content

Commit 0bddffb

Browse files
committed
Add GitHub CI (1.47, stable, nightly)
1 parent f8f9459 commit 0bddffb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
name: Rust ${{matrix.rust}}
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
rust: [1.47.0, stable, nightly]
15+
steps:
16+
- uses: actions/checkout@v2
17+
with:
18+
submodules: recursive
19+
- uses: dtolnay/rust-toolchain@master
20+
with:
21+
toolchain: ${{matrix.rust}}
22+
- run: cargo check
23+
- run: cargo test
24+
- run: cd extras/data-tests && cargo run --release

0 commit comments

Comments
 (0)