From 3079506a290ba6bc5d33f3ad2fe9f12f9bb1c194 Mon Sep 17 00:00:00 2001 From: Romain Monteil Date: Sat, 31 Jul 2021 19:53:30 +0200 Subject: [PATCH] Add PHP 8.1 to CI --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c9bd3b..68999b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: ci on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: @@ -14,14 +14,14 @@ jobs: strategy: fail-fast: false matrix: - php-version: [ '7.4' ] + php-version: [ '7.4', '8.0' ] allow-failure: [ false ] coverage: [ false ] composer-flags: [ '' ] include: - php-version: '7.3' coverage: true - - php-version: '8.0' + - php-version: '8.1' allow-failure: true composer-flags: '--ignore-platform-req php'