Added .NET 9 to test matrix #1894
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-php | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
paths: | |
- php/** | |
- testdata/** | |
- .github/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- php/** | |
- testdata/** | |
- .github/** | |
workflow_call: | |
permissions: | |
contents: read | |
jobs: | |
test-php: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['8.2'] | |
composer-mode: ['low-deps', 'high-deps'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Discover composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-dir)" | |
working-directory: php | |
- name: Cache composer | |
uses: actions/cache@v4 | |
with: | |
path: "${{ steps.composer-cache.outputs.dir }}" | |
key: composer | |
- name: Install dependencies | |
working-directory: php | |
run: | | |
if [[ "${{ matrix.composer-mode }}" = "low-deps" ]]; then | |
composer update --prefer-lowest | |
else | |
composer update | |
fi | |
- name: Run tests | |
working-directory: php | |
run: | | |
vendor/bin/php-cs-fixer --show-progress=none --dry-run --diff fix | |
vendor/bin/psalm --no-cache | |
vendor/bin/phpunit | |
- name: run acceptance tests | |
run: make acceptance | |
working-directory: php |