From a67be074e6d62e1024656be282cb2b3ab12e6e22 Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Tue, 12 Oct 2021 08:19:43 +1300 Subject: [PATCH] Try #2 - Mac/Windows 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 1be606cf9..ed27baaca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,12 +4,14 @@ name: Continuous integration jobs: ci: - runs-on: ubuntu-latest strategy: matrix: + platform: [ubuntu-latest, macos-latest, windows-latest] rust: - stable + runs-on: ${{ matrix.platform }} + steps: - uses: actions/checkout@v2