tracking/.github/workflows/ci.yaml

190 lines
5.1 KiB
YAML
Raw Permalink Normal View History

2020-02-25 20:11:06 +01:00
name: CI
on:
push:
branches:
- main
pull_request:
2020-02-25 20:11:06 +01:00
jobs:
check-composer:
2020-02-25 20:11:06 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2020-02-25 20:11:06 +01:00
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
2024-02-05 10:01:44 +01:00
php-version: 8.3
coverage: none
tools: composer:v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Validate composer.json
2020-02-25 20:11:06 +01:00
run: composer validate
php-linting:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
2022-09-21 13:21:45 +02:00
- 8.1
2023-01-08 15:34:37 +01:00
- 8.2
2024-02-05 10:01:44 +01:00
- 8.3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: none
- name: PHP lint
run: "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l"
2020-08-07 11:39:32 +02:00
xml-linting:
runs-on: ubuntu-latest
needs:
- check-composer
2020-08-07 11:39:32 +02:00
steps:
- uses: actions/checkout@v4
2020-08-07 11:39:32 +02:00
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
2024-02-05 10:01:44 +01:00
php-version: "8.3"
coverage: none
tools: composer:v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-08-07 11:39:32 +02:00
- name: Install xmllint
2023-04-25 09:32:33 +02:00
run: sudo apt update && sudo apt install libxml2-utils
2020-08-07 11:39:32 +02:00
- name: Install dependencies
run: composer install --prefer-dist --no-progress
2020-08-07 11:39:32 +02:00
- name: PHPUnit configuration file
run: xmllint --schema vendor/phpunit/phpunit/phpunit.xsd --noout phpunit.xml.dist
2020-08-07 11:39:32 +02:00
- name: Fetch schema for xliff
run: wget https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd --output-document=.Build/xliff-core-1.2-strict.xsd
2020-08-07 11:39:32 +02:00
- name: TYPO3 language files
run: xmllint --schema .Build/xliff-core-1.2-strict.xsd --noout $(find Resources -name '*.xlf')
2020-08-07 11:39:32 +02:00
coding-guideline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
2023-04-26 17:29:23 +02:00
php-version: "8.2"
coverage: none
tools: composer:v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-02-25 20:11:06 +01:00
- name: Install dependencies
run: composer install --prefer-dist --no-progress
2020-02-25 20:11:06 +01:00
- name: Coding Guideline
run: PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --dry-run --diff
2020-02-25 21:19:18 +01:00
tests-mysql:
runs-on: ubuntu-latest
needs:
- xml-linting
strategy:
matrix:
include:
2022-09-21 13:21:45 +02:00
- db-version: '8'
php-version: '8.1'
2024-02-05 10:01:44 +01:00
typo3-version: '^12.4'
2023-01-08 15:34:37 +01:00
- db-version: '8'
php-version: '8.2'
2024-02-05 10:01:44 +01:00
typo3-version: '^12.4'
- db-version: '8'
2024-02-05 10:01:44 +01:00
php-version: '8.3'
2023-04-25 09:32:33 +02:00
typo3-version: '^12.4'
2023-01-08 15:34:37 +01:00
- db-version: '8'
php-version: '8.2'
2024-07-02 18:07:03 +02:00
typo3-version: '^13.2'
2024-02-05 10:01:44 +01:00
- db-version: '8'
php-version: '8.3'
2024-07-02 18:07:03 +02:00
typo3-version: '^13.2'
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: none
tools: composer:v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup MySQL
uses: mirromutth/mysql-action@v1.1
with:
mysql version: '${{ matrix.db-version }}'
mysql database: 'typo3'
mysql root password: 'root'
- name: Wait for MySQL
run: |
while ! mysqladmin ping --host=127.0.0.1 --password=root --silent; do
sleep 1
done
- name: Install dependencies with expected TYPO3 version
2024-05-02 08:20:53 +02:00
run: composer require --prefer-dist --no-progress "typo3/cms-core:${{ matrix.typo3-version }}"
- name: PHPUnit Tests
run: |-
export typo3DatabaseDriver="pdo_mysql"
export typo3DatabaseName="typo3"
export typo3DatabaseHost="127.0.0.1"
export typo3DatabaseUsername="root"
export typo3DatabasePassword="root"
./vendor/bin/phpunit --testdox
code-quality:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php-version: '8.1'
2023-04-25 09:32:33 +02:00
typo3-version: '^12.4'
2023-01-08 15:34:37 +01:00
- php-version: '8.2'
2023-04-25 09:32:33 +02:00
typo3-version: '^12.4'
2024-02-05 10:01:44 +01:00
- php-version: '8.3'
typo3-version: '^12.4'
- php-version: '8.2'
2024-07-02 18:07:03 +02:00
typo3-version: '^13.2'
2024-02-05 10:01:44 +01:00
- php-version: '8.3'
2024-07-02 18:07:03 +02:00
typo3-version: '^13.2'
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: none
tools: composer:v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies with expected TYPO3 version
2024-05-02 08:20:53 +02:00
run: composer require --prefer-dist --no-progress "typo3/cms-core:${{ matrix.typo3-version }}"
- name: Code Quality (by PHPStan)
run: ./vendor/bin/phpstan analyse