From fc1819841b989e8f52f88c7453e9746ab73b8eea Mon Sep 17 00:00:00 2001 From: Mateusz Bysiek Date: Mon, 10 Jun 2024 16:37:32 +0900 Subject: [PATCH] build: exclude faulty images from build matrix --- .github/workflows/python.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 1083b7c..770d84c 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -13,6 +13,17 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11'] + exclude: + - os: macos-latest + python-version: '3.8' + - os: macos-latest + python-version: 'pypy3.8' + - os: macos-latest + python-version: '3.9' + - os: macos-latest + python-version: 'pypy3.9' + - os: macos-latest + python-version: '3.10' steps: - uses: actions/checkout@v4