Switch action method #1294
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 ] | |
permissions: | |
actions: write | |
checks: write | |
contents: read | |
deployments: read | |
issues: write | |
discussions: write | |
packages: read | |
pages: write | |
pull-requests: write | |
security-events: write | |
statuses: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['8.1', '8.2', '8.3', '8.4'] | |
name: PHP ${{ matrix.php }} Test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: json, mbstring, xdebug | |
coverage: xdebug | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup problem matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Get Composer cache directory | |
id: composercache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-interaction | |
- name: PHPUnit tests with coverage | |
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml | |
- name: Run PHPStan | |
run: ./vendor/bin/phpstan | |
- name: Coverage Check | |
uses: ericsizemore/phpunit-coverage-check-action@1.0.0 | |
with: | |
clover_file: 'coverage.xml' | |
threshold: 80 |