From c97bb9322386385a2cbfdd7aab705e3a47050581 Mon Sep 17 00:00:00 2001 From: Kieran Date: Mon, 26 Jul 2021 15:16:49 +0100 Subject: [PATCH] Fix GH workflow conditions (#298) * Fix GH workflow conditions * Remove PHP 8 --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa3849af..907d0112 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,8 +2,6 @@ name: ci on: push: - branches: - - "master" pull_request: jobs: @@ -12,7 +10,7 @@ jobs: strategy: fail-fast: true matrix: - php: [5.4, 5.5, 5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0] + php: [5.4, 5.5, 5.6, 7.0, 7.1, 7.2, 7.3, 7.4] name: PHP ${{ matrix.php }}