test workflow

This commit is contained in:
Michael Zhang 2019-11-29 23:51:59 -06:00
parent 1e27c046cc
commit e9f87764fb
No known key found for this signature in database
GPG key ID: 5BAEFE5D04F0CE6C

15
.github/workflows/rust.yml 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