Skip to content

Commit 31fbb25

Browse files
authored
Use Github action to run tests against PRs (#12)
1 parent 7246bf9 commit 31fbb25

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on: [push, pull_request]
2+
3+
jobs:
4+
test:
5+
runs-on: ubuntu-18.04
6+
steps:
7+
- uses: actions/checkout@v1
8+
- name: Build
9+
run: cargo build --verbose
10+
- name: Run tests
11+
run: cargo test --verbose

0 commit comments

Comments
 (0)