Copypaste rulez #7
This file contains 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: tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
php: ['8.1', '8.2', '8.3'] | |
name: PHP ${{ matrix.php }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Installing PHP | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring, json, sqlite3 | |
tools: composer:v2 | |
- name: Composer Install | |
run: composer install --prefer-dist --no-progress --no-interaction | |
- name: Run Tests [sqlite] | |
run: php vendor/bin/phpunit --stop-on-error --display-errors | |
env: | |
TEST_DB_ENGINE: sqlite | |
- name: Run Tests [mysql 5.7] | |
run: php vendor/bin/phpunit --stop-on-error --display-errors | |
env: | |
TEST_DB_ENGINE: mysql | |
TEST_DB_PORT: ${{ job.services.mysql.ports[3306] }} | |
- name: Run Tests [mysql 8.0] | |
run: php vendor/bin/phpunit --stop-on-error --display-errors | |
env: | |
TEST_DB_ENGINE: mysql | |
TEST_DB_PORT: ${{ job.services.mysql8.ports[3306] }} | |
- name: Run Tests [postgres] | |
run: php vendor/bin/phpunit --stop-on-error --display-errors | |
env: | |
TEST_DB_ENGINE: pgsql | |
TEST_DB_PORT: ${{ job.services.postgres.ports[5432] }} | |
TEST_DB_PASSWORD: postgres | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
MYSQL_DATABASE: history_test | |
ports: | |
- 3306 | |
mysql8: | |
image: mysql:8.0 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
MYSQL_DATABASE: history_test | |
ports: | |
- 3306 | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: history_test | |
ports: | |
- 5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 |