From 3a7e942ee2b1ff54c9f97ba795cb087be36b8131 Mon Sep 17 00:00:00 2001 From: Dylan Anthony Date: Fri, 2 Jul 2021 11:08:18 -0600 Subject: [PATCH] ci: Start testing on macOS --- .github/workflows/checks.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6c27e3c8d..f9c8a926c 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -11,10 +11,12 @@ on: jobs: test: - runs-on: ubuntu-latest strategy: matrix: python: [ 3.6, 3.7, 3.8, 3.9 ] + os: [ ubuntu-latest, macos-latest ] + runs-on: ${{ matrix.os }} + steps: - uses: actions/checkout@v2 - name: Set up Python