Skip to content

Commit

Permalink
[CI] Streamline GitHub workflow configuration for tests (#368)
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
  • Loading branch information
brotkrueml committed Sep 7, 2023
1 parent e357d51 commit 96ae2b1
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 96ae2b1

Please sign in to comment.