misc_pterodactyl-panel/.github/workflows/tests.yml

81 lines
2.8 KiB
YAML
Raw Normal View History

2021-04-17 19:10:40 +00:00
name: run tests
on:
push:
2021-04-17 19:10:40 +00:00
branches-ignore:
- master
- "release/**"
pull_request:
jobs:
2021-04-17 19:10:40 +00:00
tests:
runs-on: ubuntu-latest
2020-11-15 04:46:37 +00:00
if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')"
services:
2021-04-17 19:10:40 +00:00
mariadb:
image: mariadb:10.2
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: panel_test
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
mysql:
2021-04-17 19:10:40 +00:00
image: mysql:8
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: panel_test
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
matrix:
2021-04-17 19:10:40 +00:00
php: [ 7.4, 8.0 ]
database: [ mysql, mariadb ]
2021-04-17 19:12:04 +00:00
name: "php-${{ matrix.php }} (engine: ${{ matrix.database }})"
steps:
- name: checkout
uses: actions/checkout@v2
2020-06-28 22:22:39 +00:00
- name: get cache directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: cache dependencies
uses: actions/cache@v2
with:
path: |
~/.php_cs.cache
${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-cache-${{ matrix.php }}-${{ hashFiles('**.composer.lock') }}
- name: setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: cli, openssl, gd, mysql, pdo, mbstring, tokenizer, bcmath, xml, curl, zip
tools: composer:v2
coverage: none
2020-06-28 22:26:09 +00:00
- name: configure
run: cp .env.ci .env
- name: install dependencies
2020-06-28 22:22:39 +00:00
run: composer install --prefer-dist --no-interaction --no-progress
- name: run cs-fixer
2021-01-26 03:25:15 +00:00
run: vendor/bin/php-cs-fixer fix --dry-run --diff --diff-format=udiff --config .php_cs.dist
continue-on-error: true
- name: execute unit tests
2021-09-11 19:13:15 +00:00
run: vendor/bin/phpunit --bootstrap vendor/autoload.php tests/Unit
if: ${{ always() }}
env:
DB_CONNECTION: testing
TESTING_DB_HOST: UNIT_NO_DB
2021-04-17 19:10:40 +00:00
- name: execute integration tests (mysql)
run: vendor/bin/phpunit tests/Integration
2021-09-11 19:13:15 +00:00
if: ${{ matrix.database == 'mysql' }}
env:
TESTING_DB_PORT: ${{ job.services.mysql.ports[3306] }}
TESTING_DB_USERNAME: root
2021-04-17 19:10:40 +00:00
- name: execute integration tests (mariadb)
run: vendor/bin/phpunit tests/Integration
2021-09-11 19:13:15 +00:00
if: ${{ matrix.database == 'mariadb' }}
2021-04-17 19:10:40 +00:00
env:
TESTING_DB_PORT: ${{ job.services.mariadb.ports[3306] }}
TESTING_DB_USERNAME: root