Update .github/workflows/ci.yml #223
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: ~ | |
pull_request: ~ | |
permissions: read-all | |
jobs: | |
ci: | |
uses: 'terminal42/contao-build-tools/.github/workflows/build-tools.yml@main' | |
tests: | |
name: Unit tests (PHP ${{ matrix.php }} / Contao ${{ matrix.contao }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.1', '8.2', '8.3', '8.4' ] | |
contao: [ '4.13', '5.3', '5.4' ] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Require Contao version for tests | |
run: composer require contao/core-bundle:${{ matrix.contao }}.* --dev --no-update | |
# Remove this once https://github.com/contao/contao/pull/7751 is merged and Contao 4.13.51 is released | |
- name: Require TestCase version for tests | |
run: composer require contao/test-case:${{ matrix.contao }}.* --dev --no-update | |
- name: Install the dependencies | |
run: | | |
composer install --no-interaction --no-progress --no-plugins | |
- name: Run phpunit | |
run: composer unit |