-
-
Notifications
You must be signed in to change notification settings - Fork 38
43 lines (34 loc) · 1.32 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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