From 9a21b7cb648a57e3df62980bfed544a20b891977 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Borys=20=C5=BBmuda?= Date: Sun, 6 Oct 2024 08:14:34 +0200 Subject: [PATCH] chore: Update workflow --- .github/workflows/tests.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c961568..e48854f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,16 +2,19 @@ name: tests on: push: - branches: [ "main" ] + branches: + - main + - '*.x' pull_request: - branches: [ "main" ] + branches: + - main permissions: contents: read jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 strategy: fail-fast: true @@ -28,4 +31,6 @@ jobs: run: composer install --prefer-dist --no-interaction --no-progress - name: Run test suite - run: composer run-script test + env: + XDEBUG_MODE: coverage + run: composer test