From 5e09ea0a1c7ab7e4f9e27771f5a0e5a36c58d1bb Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Mon, 18 May 2020 17:19:04 +0200 Subject: [PATCH] Add Github Actions (#10) * Add Github Actions This PR adds CI with GitHub Actions using the `rust-lang/simpleinfra` simple ci github action. --- .github/workflows/rust.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..9055ae0 --- /dev/null +++ b/.github/workflows/rust.yml @@ -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]