From 268cc73933d86f8ea8b639004d6a9ae7beb5d8d9 Mon Sep 17 00:00:00 2001 From: Remco Koopmans Date: Sun, 11 Aug 2024 15:43:02 +0200 Subject: [PATCH] Add windows and mac runners --- .github/workflows/ci-cd.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 16b3c4d..75b8fed 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -30,10 +30,11 @@ jobs: path: .coverage Test: - runs-on: ubuntu-latest strategy: matrix: python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + os: ["ubuntu-latest", "windows-latest", "macos-latest"] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -51,7 +52,7 @@ jobs: if: success() uses: actions/upload-artifact@v4 with: - name: coverage-${{ matrix.python-version }} + name: coverage-${{ matrix.python-version }}-${{ matrix.os }} path: .coverage combine-coverage: