From 8ca42bfafb7f49ec8b55980e1d5d095467aadd2e Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Tue, 28 May 2024 16:19:20 +0100 Subject: [PATCH] fix gha --- .github/workflows/test.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a93d8ac..fac4011 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,17 +8,12 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.platform }} strategy: matrix: # test on same versions as fonttools python-version: ["3.10"] - platform: [ubuntu-latest, macos-latest, windows-latest] - exclude: # Only test on the latest supported stable Python on macOS and Windows. - - platform: macos-latest - python-version: 3.10 - - platform: windows-latest - python-version: 3.10 + platform: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}