From 67cce7c86139426bd8a5c60c8b48c01bd53bebe4 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 14 Feb 2021 13:35:12 -0800 Subject: [PATCH] Run publish tests on macOS and Windows too, refs #232 --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3755c3a..9f05567 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,10 +6,11 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}