From 3441147b7ee50467a2879dadf90a359c92dbc640 Mon Sep 17 00:00:00 2001 From: Forest Anderson Date: Thu, 27 Aug 2020 11:47:50 -0400 Subject: [PATCH] Added windows and macos builds to CI --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbe416220ffbc..d303976ffecc7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,10 +11,11 @@ env: jobs: build: - runs-on: ubuntu-latest strategy: matrix: toolchain: [stable, nightly] + os: [windows-2019, ubuntu-20.04, macos-10.15] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -31,6 +32,7 @@ jobs: - name: Install alsa run: sudo apt-get install --no-install-recommends libasound2-dev + if: ${{ runner.os == 'Linux' }} - name: Build run: cargo check