mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-20 01:50:33 +00:00
d11195e117
authored-by: Christopher Georg <christopher.georg@sr-travel.de>
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
name: build
|
|
|
|
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', '8.3']
|
|
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: Coverage
|
|
if: ${{ matrix.php == '8.1' && matrix.deps == 'lowest' }}
|
|
shell: bash
|
|
env:
|
|
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
|
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r build/logs/clover.xml
|
|
|
|
- name: Store artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: logs
|
|
path: build/logs
|