#235 First draft of v3.1 #1131
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PHP Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: ['8.1', '8.2', '8.3'] | |
| db-type: [sqlite, mysql, pgsql] | |
| composer-type: [lowest, stable, dev] | |
| name: PHP ${{ matrix.php-version }} & ${{ matrix.db-type }} & ${{ matrix.composer-type }} | |
| services: | |
| postgres: | |
| image: postgres | |
| ports: | |
| - 5432:5432 | |
| env: | |
| POSTGRES_DB: test_fixture_factories | |
| POSTGRES_PASSWORD: root | |
| POSTGRES_USER: root | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: mbstring, intl, apcu, pdo_${{ matrix.db-type }} | |
| ini-values: apc.enable_cli = 1 | |
| coverage: pcov | |
| - name: Update composer | |
| run: composer self-update --snapshot | |
| - name: Validate composer.json | |
| run: composer validate | |
| - name: Install dependencies | |
| run: | | |
| if [[ ${{ matrix.composer-type }} == 'lowest' ]]; then | |
| composer update --prefer-dist --no-progress --no-suggest --prefer-stable --prefer-lowest | |
| elif [[ ${{ matrix.composer-type }} == 'stable' ]]; then | |
| composer update --prefer-dist --no-progress --no-suggest --prefer-stable | |
| else | |
| composer update --prefer-dist --no-progress --no-suggest | |
| fi | |
| - name: Run tests | |
| run: | | |
| if [ ${{ matrix.db-type }} == 'mysql' ]; then | |
| sudo service mysql start && mysql -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE IF NOT EXISTS test_fixture_factories;'; | |
| fi | |
| composer ${{ matrix.db-type }} |