actions: rust ci init

This commit is contained in:
Kreyren 2020-02-05 12:15:39 +01:00 committed by GitHub
parent 30b9d83dde
commit a4c9938506
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

15
.github/workflows/rust.yml vendored Normal file

@ -0,0 +1,15 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Tests
run: cargo test --verbose