Skip to content

Commit

Permalink
[TASK] GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aoekrz committed Aug 11, 2023
1 parent 8a82fd5 commit 4b88c47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
${{ runner.os }}-composer-
- uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: 8.0
coverage: none

- name: "Determine tag"
Expand Down
19 changes: 4 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,9 @@ jobs:
strategy:
fail-fast: false
matrix:
typo3: [ ^10.4, ^11.5 ]
php: [ '7.3', '7.4' ]
typo3: [ ^11.5 ]
php: [ '8.0', '8.1', '8.2' ]
experimental: [false]
include:
- typo3: ^11.5
php: '8.0'
experimental: true
- typo3: ^11.5
php: '8.1'
experimental: true
exclude:
- typo3: ^11.5
php: '7.3'
experimental: false

continue-on-error: ${{ matrix.experimental }}

Expand Down Expand Up @@ -71,7 +60,7 @@ jobs:
run: |
export "FUNCTIONAL_XML"=Tests/Functional/phpunit.xml
.Build/bin/phpunit --whitelist Classes --colors -c $FUNCTIONAL_XML Tests/Functional
if: matrix.typo3 != '^11.5' || matrix.php != '7.4'
if: matrix.typo3 != '^11.5' || matrix.php != '8.0'
env:
typo3DatabaseHost: 127.0.0.1
typo3DatabaseName: typo3
Expand All @@ -82,7 +71,7 @@ jobs:
run: |
export "FUNCTIONAL_XML"=Tests/Functional/phpunit.xml
.Build/bin/phpunit --whitelist Classes --coverage-clover=functional-coverage.clover --colors -c $FUNCTIONAL_XML Tests/Functional
if: matrix.typo3 == '^11.5' && matrix.php == '7.4'
if: matrix.typo3 == '^11.5' && matrix.php == '8.0'
env:
typo3DatabaseHost: 127.0.0.1
typo3DatabaseName: typo3
Expand Down

0 comments on commit 4b88c47

Please sign in to comment.