From 6ad4593f41a0e5230fdee60ab045bd9bafa95e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= Date: Tue, 5 Jul 2022 13:12:11 +0200 Subject: [PATCH] CI: GitHub: test on Mac OS as well Change-Id: Ifb8ba470765fc02e3367beeaf8f048da6fdad6d7 --- .github/workflows/main.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 007e542e..ee4060df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -92,9 +92,9 @@ jobs: telecominfraproject/oopt-gnpy:${{ steps.extract_tag_name.outputs.GIT_DESC }} telecominfraproject/oopt-gnpy:latest - windows: - name: Tests on Windows - runs-on: windows-2019 + other-platforms: + name: Tests on other platforms + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 with: @@ -108,5 +108,8 @@ jobs: pytest -vv strategy: matrix: - python_version: - - "3.10" + include: + - os: windows-2019 + python_version: "3.10" + - os: macos-12 + python_version: "3.10"