From a0bdda70ae0993a1032da0c16cfda617a2c2761b Mon Sep 17 00:00:00 2001 From: Matthias Diener <mdiener@illinois.edu> Date: Tue, 19 Mar 2024 13:20:09 -0500 Subject: [PATCH] run pytest on macos --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ccbc92d..ce3f566 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,11 +68,12 @@ jobs: . ./prepare-and-run-mypy.sh python3 mypy pytest: - name: Pytest on Py${{ matrix.python-version }} - runs-on: ubuntu-latest + name: Pytest on Py${{ matrix.python-version }} ${{ matrix.os }} + runs-on: ${{ matrix.os }} strategy: matrix: python-version: ["3.8", "3.9", "3.x", "pypy3.8"] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v4 - -- GitLab