first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
name: CI
on: [push, pull_request]
jobs:
unit-tests:
runs-on: 'ubuntu-latest'
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['8.1']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install
- name: Install fixtures
run: composer install-fixtures
- name: Run unit tests
run: ./vendor/bin/phpunit