Add support for Draft 6 #48
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: Test | |
on: [push, pull_request] | |
jobs: | |
psalm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Psalm | |
uses: docker://vimeo/psalm-github-actions | |
with: | |
security_analysis: true | |
report_file: results.sarif | |
- name: Upload Security Analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: results.sarif | |
# codecov: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# with: | |
# fetch-depth: 0 | |
# - name: Cache Composer dependencies | |
# uses: actions/cache@v2 | |
# with: | |
# path: /tmp/composer-cache | |
# key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
# - uses: php-actions/composer@v6 | |
# - uses: php-actions/phpunit@v2 | |
# env: | |
# XDEBUG_MODE: coverage | |
# with: | |
# php_extensions: xdebug | |
# args: --coverage-clover coverage.xml | |
# - uses: codecov/codecov-action@v1 | |
# with: | |
# file: ./coverage.xml | |
# fail_ci_if_error: true | |
# verbose: true | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: | |
- 8.2 | |
- 8.3 | |
include: | |
- php: 8.2 | |
phpunit: 10 | |
- php: 8.3 | |
phpunit: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- uses: php-actions/composer@v6 | |
with: | |
php_version: ${{ matrix.php }} | |
- uses: php-actions/phpunit@v3 | |
with: | |
php_version: ${{ matrix.php }} | |
version: ${{ matrix.phpunit }} | |
php_extensions: xdebug | |
coverage_text: true | |
bootstrap: vendor/autoload.php | |
args: --coverage-filter src tests | |
env: | |
XDEBUG_MODE: coverage |