Files
immorechner/.gitea/workflows/test.yml
Martin 5f216f1317
Some checks failed
PHPUnit & CS-Fixer / test (push) Has been cancelled
Insert GITEA action
2025-11-09 11:40:18 +01:00

18 lines
458 B
YAML

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