Add Github Actions (#10)

* Add Github Actions

This PR adds CI with GitHub Actions using the `rust-lang/simpleinfra` simple ci github action.
This commit is contained in:
XAMPPRocky 2020-05-18 17:19:04 +02:00 committed by GitHub
parent 89ce6783ea
commit 5e09ea0a1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Rust
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v2
- uses: rust-lang/simpleinfra/github-actions/simple-ci@master
strategy:
matrix:
os: [ubuntu, windows, macos]