Add github workflow

This commit is contained in:
Paul Hauner
2019-11-22 17:42:16 +11:00
parent c170cfb902
commit 55a0b9fafd

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: Run release tests with all features
run: cargo test --release --all --all-features
- name: Check formatting with cargo fmt
run: cargo test --release --all --all-features