From 847e17ae78e12f4f86de30867a6a9eede1a65477 Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Mon, 12 Feb 2024 17:20:54 +0100 Subject: [PATCH] simplify ci --- .github/workflows/test.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aff6bc9..28445b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,10 +17,15 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: - - "3.8" - - "3.12" - + include: + # version number must be string, otherwise 3.10 becomes 3.1 + - os: windows-latest + python-version: "3.12" + - os: macos-latest + python-version: "3.8" + - os: ubuntu-latest + python-version: "pypy-3.8" + fail-fast: false steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4