Fix error message based on PHP version #17
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: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.1, 8.2, 8.3] | |
dependency-version: [prefer-stable] | |
os: [ubuntu-latest] | |
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
- name: Execute tests | |
run: vendor/bin/pest | |
coverage: | |
runs-on: ubuntu-latest | |
name: Coverage | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: dom, curl, libxml, mbstring, zip | |
tools: composer:v2 | |
coverage: xdebug | |
- name: Install dependencies | |
run: composer update --prefer-stable --prefer-dist --no-interaction | |
- name: Execute tests | |
run: vendor/bin/pest --coverage-text --coverage-clover=coverage.clover | |
- name: Upload coverage | |
run: | | |
vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover | |
linting: | |
runs-on: ubuntu-latest | |
name: Linting | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer update --prefer-stable --prefer-dist --no-interaction | |
- name: Execute Duster | |
run: vendor/bin/duster lint -u tlint,phpcodesniffer,pint,phpstan -vvv |