Merge pull request #26 from alalavn/master #153
Workflow file for this run
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: PHPUnit | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*.*.*" | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Build: | |
runs-on: 'ubuntu-latest' | |
container: 'byjg/php:${{ matrix.php-version }}-cli' | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
- "8.2" | |
- "8.1" | |
services: | |
mysql: | |
image: bitnami/mysql:8.0.20 | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_AUTHENTICATION_PLUGIN: mysql_native_password | |
ports: | |
- "3306:3306" | |
options: >- | |
--health-cmd="mysqladmin ping" | |
--health-interval=10s | |
--health-timeout=20s | |
--health-retries=10 | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
options: >- | |
--health-cmd "pg_isready -U postgres" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
sqlserver: | |
image: mcr.microsoft.com/mssql/server | |
env: | |
ACCEPT_EULA: Y | |
SA_PASSWORD: Pa55word | |
ports: | |
- "1433:1433" | |
options: >- | |
--health-cmd "/opt/mssql-tools18/bin/sqlcmd -C -U sa -P Pa55word -Q 'SELECT 1'" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
MYSQL_TEST_HOST: mysql | |
PSQL_TEST_HOST: postgres | |
MSSQL_TEST_HOST: sqlserver | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
apk add --no-cache ${PHP_VARIANT}-pdo_dblib | |
- run: composer install | |
- run: ./vendor/bin/psalm | |
- run: ./vendor/bin/phpunit | |
- run: ./vendor/bin/phpunit testsdb/PdoMySqlTest.php | |
- run: ./vendor/bin/phpunit testsdb/PdoSqliteTest.php | |
- run: ./vendor/bin/phpunit testsdb/PdoPostgresTest.php | |
- run: ./vendor/bin/phpunit testsdb/PdoDblibTest.php | |
Documentation: | |
if: github.ref == 'refs/heads/master' | |
needs: Build | |
uses: byjg/byjg.github.io/.github/workflows/add-doc.yaml@master | |
with: | |
folder: php | |
project: ${{ github.event.repository.name }} | |
secrets: inherit | |