From 01a96ab2679ad75250207970dce2a286daf5a838 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Wed, 23 Feb 2022 21:57:40 +0100 Subject: [PATCH 1/2] chore: add GitHub actions workflow tests for php 8.0 and 8.1, change runs-on to ubuntu-latest --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6227dcc9..deaa5149 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: build: name: PHP ${{ matrix.php }} - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: matrix: @@ -18,6 +18,8 @@ jobs: - 7.2 - 7.3 - 7.4 + - 8.0 + - 8.1 steps: - uses: actions/checkout@v2 From 2d2d0788618ee1f771f32171f3e6cc70c315529e Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Wed, 23 Feb 2022 22:00:20 +0100 Subject: [PATCH 2/2] chore: add GitHub actions workflow tests for php 8.0 and 8.1, change runs-on to ubuntu-latest. run test on all branches --- .github/workflows/tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index deaa5149..508281cb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,10 +1,6 @@ name: Tests -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: ["push", "pull_request"] jobs: build: