From 3ea06fb10ac436c7b31dea3f050e6726380fa1ca Mon Sep 17 00:00:00 2001 From: Jeff Muizelaar Date: Wed, 28 Oct 2020 19:22:41 -0400 Subject: [PATCH] Add github actions CI for macos-11.0 --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 000000000..30b84e856 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: macos-11.0 + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose