Add build and test github action workflow

type: testing
This commit is contained in:
Casey Rodarmor 2020-01-04 15:04:20 -08:00
parent 98335f435d
commit 3affa8c5e1
No known key found for this signature in database
GPG Key ID: 556186B153EC6FE0

13
.github/workflows/rust.yaml vendored Normal file
View File

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