From 1f8a7a9cb4e5baefe29f126dc627046a21bbae84 Mon Sep 17 00:00:00 2001 From: Arne Blankerts Date: Sat, 22 Jul 2023 16:29:47 +0200 Subject: [PATCH] Update github actions --- .github/workflows/integrate.yaml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index d863322..3ce0c94 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -6,7 +6,7 @@ on: pull_request: null push: branches: - - "master" + - "main" jobs: tests: @@ -17,11 +17,8 @@ jobs: strategy: matrix: php-version: - - "7.2" - - "7.3" - - "7.4" - - "8.0" - - "8.1" + - "8.2" + - "8.3" continue-on-error: true @@ -60,10 +57,10 @@ jobs: restore-keys: "phive-" - name: "Install tools" - run: "ant install-tools-ci" + run: "ant tools" - name: "Generate autoloader with phpab" - run: "ant phpab" + run: "ant autoload" - name: "Run tests with phpunit" - run: "ant phpunit" + run: "ant test"