Skip to content

Commit

Permalink
Test against PHP 8.2 and 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sfroemkenjw committed Jan 3, 2025
1 parent a01467e commit f059955
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 100 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Tests

on: [pull_request]

jobs:
testing:
name: Testing

runs-on: ubuntu-latest

strategy:
fail-fast: true

matrix:
php:
- '8.2'
- '8.3'

steps:
- name: 'Checkout'
uses: actions/checkout@v4

- name: 'Lint PHP'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint

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

- name: 'Composer validate'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate

- name: 'Composer normalize'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerNormalize -n

- name: 'CGL'
run: Build/Scripts/runTests.sh -n -p ${{ matrix.php }} -s cgl

- name: 'Execute unit tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mysql -s functional

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional

- name: 'Execute functional tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional
50 changes: 0 additions & 50 deletions .github/workflows/typo3_11.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/typo3_12.yml

This file was deleted.

0 comments on commit f059955

Please sign in to comment.