Files
DatBrowser/.gitea/workflows/test.yaml
Matthias Guillitte 5ce8fbd444
Some checks failed
Launch the PHPunit tests / phpunit-tests (push) Failing after 1m52s
Push image to registry / build-image (push) Has been cancelled
fix php version
2025-11-06 17:25:31 +01:00

20 lines
447 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.3.0'
- name: Install dependencies
run: composer install
- name: Run PHPUnit tests
run: vendor/bin/phpunit --configuration phpunit.xml