From 21b61a1528c5a52e6c1158adc6e68e6b47695656 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 2 Feb 2022 14:26:45 -0800 Subject: [PATCH] Try test suite against macOS and Windows Refs #1625 --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 478e1f34..ea7fcf73 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,9 +4,10 @@ on: [push] jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] steps: - uses: actions/checkout@v2