Add Github action config

This commit is contained in:
Alexis Mousset
2019-11-30 10:27:12 +00:00
committed by GitHub
parent d227cd4384
commit 3eef024f77

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 --all --all-features --verbose
- name: Run tests
run: cargo test --all --all-features --verbose