setup minimal github action

Just so we can experiment with it on branches
This commit is contained in:
Friedel Ziegelmayer
2019-11-12 14:31:38 +01:00
committed by GitHub
parent c6369b1c5a
commit d330d890c0

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