From 172b69cf15d263429e56dabc6e5e3668f4638f6a Mon Sep 17 00:00:00 2001 From: luke Date: Mon, 2 Aug 2021 12:57:57 +0100 Subject: [PATCH] Adds continue-on-error for php 8.1 --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e3e31b16..c6aee051 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,15 +5,15 @@ on: ['push', 'pull_request'] jobs: ci: runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.continue-on-error }} strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] php: ['7.3', '7.4', '8.0', '8.1'] dependency-version: [prefer-lowest, prefer-stable] - include: - os: '8.1' - continue-on-error: true - continue-on-error: ${{matrix.continue-on-error}} + include: + - os: '8.1' + continue-on-error: true name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}