From 78ffc491e9b911c18ceddc9683fe3b8fe9d63d17 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 25 Sep 2021 13:37:06 +0100 Subject: [PATCH] chore: exclude builds on PHP 8.1 on mac os or windows --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bf54737e..b06bd1af 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,6 +11,11 @@ jobs: php: ['7.3', '7.4', '8.0', '8.1'] dependency-version: [prefer-lowest, prefer-stable] parallel: ['', '--parallel'] + exclude: + - php: 8.1 + os: macos-latest + - php: 8.1 + os: windows-latest name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} - ${{ matrix.parallel }}