Bump friendsofphp/php-cs-fixer from 3.34.0 to 3.34.1 #496
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: test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
php-version: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Pull | |
run: docker-compose pull --quiet | |
- name: Build | |
run: docker-compose build --build-arg PHPVERSION=${{ matrix.php-version }} | |
- name: Test | |
run: docker-compose run -e "PHP_CS_FIXER_IGNORE_ENV=True" lib composer ci | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
if: success() | |
with: | |
file: ./coverage/clover.xml |