mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-25 04:48:26 +00:00
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
name: tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*.x'
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-22.04
|
|
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
php: ['8.1', '8.2']
|
|
deps: [highest]
|
|
|
|
include:
|
|
- php: '8.1'
|
|
deps: lowest
|
|
|
|
name: PHP ${{ matrix.php }} / ${{ matrix.deps }}
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
ini-values: error_reporting=E_ALL
|
|
tools: composer:v2
|
|
coverage: xdebug
|
|
|
|
- name: Install dependencies
|
|
uses: ramsey/composer-install@v2
|
|
with:
|
|
dependency-versions: ${{ matrix.deps }}
|
|
|
|
- name: Setup logs directory
|
|
run: mkdir -p build/logs
|
|
|
|
- name: Execute tests
|
|
run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml --exclude-group flaky
|
|
|
|
- name: Store artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: logs
|
|
path: build/logs
|