Insert GITEA action
Some checks failed
PHPUnit & CS-Fixer / test (push) Has been cancelled

This commit is contained in:
2025-11-09 11:40:18 +01:00
parent 4953d192c0
commit 5f216f1317

17
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,17 @@
name: PHPUnit & CS-Fixer
on:
push:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Run php-cs-fixer
run: vendor/bin/php-cs-fixer fix --dry-run --diff
- name: Run PHPUnit
run: vendor/bin/phpunit