Add initial github action

This commit is contained in:
Alexandre Bury 2019-10-09 14:53:15 -07:00 committed by GitHub
parent 04d27b352a
commit 4f3965846c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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