From ae5f4f99ed5d92f2a4e614b9b4727ca1f80cb8c6 Mon Sep 17 00:00:00 2001 From: kazk Date: Mon, 17 May 2021 16:10:55 -0700 Subject: [PATCH] Set up CI for macOS and Windows --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 288e153..c0329e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,10 +3,12 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-latest strategy: + fail-fast: false matrix: + os: [ubuntu-latest, macos-latest, windows-latest] python-version: [3.6, 3.7, 3.8] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}