From 99fbd8921018fc177b5ac1d8db461f48af5d1544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claudio=20Alarc=C3=B3n=20Reyes?= Date: Sat, 16 Nov 2024 07:11:14 -0300 Subject: [PATCH] Using different macos versions for python older and newer than 3.11 --- .github/workflows/all-lints.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/all-lints.yml b/.github/workflows/all-lints.yml index ceea1c6..72071e5 100644 --- a/.github/workflows/all-lints.yml +++ b/.github/workflows/all-lints.yml @@ -8,8 +8,20 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-13, macos-latest, windows-latest] python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + exclude: + - os: macos-latest + python-version: 3.8 + - os: macos-latest + python-version: 3.9 + - os: macos-latest + python-version: 3.10 + - os: macos-13 + python-version: 3.11 + - os: macos-13 + python-version: 3.12 + steps: - uses: actions/checkout@v4 - uses: marian-code/python-lint-annotate@master