Skip to content

Commit

Permalink
[CI] Streamline GitHub workflow configuration for tests (#369)
Browse files Browse the repository at this point in the history
- The strategy option is removed. This is superfluous as no build matrix is defined.
- The actions/checkout action is updated to version 4.

Releases: main, 12.4

Co-authored-by: Chris Müller <2566282+brotkrueml@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and brotkrueml authored Sep 7, 2023
1 parent f67bd68 commit 732b763
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,11 @@ jobs:
testsuite:
name: all tests
runs-on: ubuntu-latest
strategy:
# This prevents cancellation of matrix job runs, if one or more already failed
# and let the remaining matrix jobs be executed anyway.
fail-fast: false
env:
php: '8.1'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install testing system
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerUpdate
Expand Down

0 comments on commit 732b763

Please sign in to comment.