Add workflow

This commit is contained in:
Aymeric Beringer
2019-11-18 16:29:33 +01:00
committed by GitHub
parent 48352c270f
commit 4a4ed4ea5c

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