add github workflow

master
Edward Shen 2019-12-24 00:43:32 -05:00
parent 673061106a
commit 5bfcb972c5
Signed by: edward
GPG Key ID: F350507060ED6C90
1 changed files with 15 additions and 0 deletions

15
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose