Skip to content

Commit

Permalink
[BUGFIX] update testing setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrichmathes committed Oct 24, 2024
1 parent 77c97df commit a241df8
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
composer-requirements: ['Min', 'Max']
exclude:
- typo3-versions: '13.4'
composer-requirements: 'Max'
composer-requirements: 'Min'

name: Unit (PHP ${{ matrix.php-versions }}, TYPO3 ${{ matrix.typo3-versions }}, Req ${{ matrix.composer-requirements }})
steps:
Expand All @@ -65,7 +65,7 @@ jobs:
run: Build/Scripts/runTests.sh -p ${{ matrix.php-versions }} -t ${{ matrix.typo3-versions }} -s composerUpdate${{ matrix.composer-requirements }}

- name: Automated Unit Testing
run: Build/Scripts/runTests.sh -s unit
run: Build/Scripts/runTests.sh -p ${{ matrix.php-versions }} -s unit


functional:
Expand All @@ -78,7 +78,7 @@ jobs:
composer-requirements: ['Min', 'Max']
exclude:
- typo3-versions: '13.4'
composer-requirements: 'Max'
composer-requirements: 'Min'

name: Functional (PHP ${{ matrix.php-versions }}, TYPO3 ${{ matrix.typo3-versions }}, Req ${{ matrix.composer-requirements }})
steps:
Expand All @@ -98,5 +98,8 @@ jobs:
- name: Install composer dependencies
run: Build/Scripts/runTests.sh -p ${{ matrix.php-versions }} -t ${{ matrix.typo3-versions }} -s composerUpdate${{ matrix.composer-requirements }}

- name: Automated Unit Testing
run: Build/Scripts/runTests.sh -s functional
- name: Update testing containers
run: Build/Scripts/runTests.sh -s update

- name: Automated Functional Testing
run: Build/Scripts/runTests.sh -p ${{ matrix.php-versions }} -s functional

0 comments on commit a241df8

Please sign in to comment.