Files
DatBrowser/.gitea/workflows/test.yaml
Matthias Guillitte 4422e7564b
Some checks failed
Push image to registry / build-image (push) Successful in 4m10s
Launch the PHPunit tests / phpunit-tests (push) Failing after 1m50s
Init Feature testing and test for Eldorado's text to float conversion
2025-11-06 17:18:01 +01:00

20 lines
445 B
YAML

name: Launch the PHPunit tests
on:
push:
jobs:
phpunit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: Install dependencies
run: composer install
- name: Run PHPUnit tests
run: vendor/bin/phpunit --configuration phpunit.xml