Clean-up and new localization process #16
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 Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
# https://www.php.net/supported-versions.php | |
php-version: ['8.3'] | |
name: Level0 tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up PHP ${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: none | |
- name: Install dependencies | |
run: composer install --no-progress --no-suggest --no-interaction | |
- name: Run tests | |
run: | | |
composer validate | |
cp www/config.php.sample www/config.php | |
./vendor/bin/phpunit --display-warnings test/ |