From 2a3982ecde5a0b8ca04ed99cc3e361f331b160ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 20 Aug 2024 07:57:17 +0300 Subject: [PATCH] ci: run main tests on macOS and Windows, too --- .github/workflows/check.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 2abc2bd..bf59167 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,11 +8,15 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, ubuntu-latest, windows-latest] steps: - uses: actions/checkout@v4 # No caching as we're expected to run rarely - name: Install dependencies and run checks + shell: bash run: | set -euxo pipefail python3 -m pip install pre-commit