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 bcab0ae715
commit bb4552b3bc
+13
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]