Skip to content

Integrate mll-lab/holidays #8

Integrate mll-lab/holidays

Integrate mll-lab/holidays #8

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
on:
pull_request:
push:
branches:
- master
jobs:
composer-validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 8.3
- run: composer validate --strict
static-code-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: 8.3
- run: composer install --no-interaction --no-progress --no-suggest
- run: vendor/bin/phpstan analyse
tests:
name: "Tests - PHP ${{ matrix.php-version }}, Illuminate ${{ matrix.illuminate }}, ${{ matrix.dependencies }}"
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
- "8.3"
dependencies:
- lowest
- highest
illuminate:
- ^8.73
- ^9
- ^10
exclude:
- php-version: "7.4"
illuminate: ^9
- php-version: "7.4"
illuminate: ^10
- php-version: "8.0"
illuminate: ^10
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: mbstring
php-version: "${{ matrix.php-version }}"
- run: composer require "illuminate/support:${{ matrix.illuminate }}" --no-interaction --no-update
- if: matrix.dependencies == 'lowest'
run: composer update --prefer-lowest --no-interaction --no-progress --no-suggest
- if: matrix.dependencies == 'highest'
run: composer update --no-interaction --no-progress --no-suggest
- run: vendor/bin/phpunit
code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: pcov
extensions: mbstring
php-version: 8.3
- run: composer install --no-interaction --no-progress --no-suggest
- run: vendor/bin/phpunit --coverage-clover=.build/logs/clover.xml
- uses: codecov/codecov-action@v3
mutation-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: pcov
extensions: mbstring
php-version: 8.3
- run: composer install --no-interaction --no-progress --no-suggest
- run: vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=60 --min-msi=60