Create rust.yml

Simple tests
This commit is contained in:
House of Vanity
2019-11-23 22:29:12 +03:00
committed by GitHub
parent 8fce50324b
commit f3258b52bc

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