MISC: missed importing the config in a couple of places #26
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
#.github/workflows/php.yml | |
name: Bundle Tests | |
on: | |
push: ~ | |
pull_request: ~ | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }} | |
strategy: | |
matrix: | |
operating-system: [ ubuntu-latest ] | |
php: [ '8.2','8.3' ] | |
symfony: ['~6.3.0', '~6.4.0', '~7.0.0' ] | |
steps: | |
- uses: actions/checkout@master | |
- name: "Cache Composer packages" | |
uses: "actions/cache@v3" | |
with: | |
path: "~/.composer/cache" | |
key: "php-${{ matrix.php }}-symfony-${{ matrix.symfony }}-composer-${{ hashFiles('composer.json') }}" | |
restore-keys: "php-" | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2,flex | |
- name: Download dependencies | |
run: "composer update --prefer-dist" | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
- name: install test tools | |
run: composer bin all install | |
- name: Run test suite on PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }} | |
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml | |
- uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.xml | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |
- name: Run Psalm | |
run: ./vendor/bin/psalm | |
style_coverage_commit: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: install deps, to execute things | |
run: composer install --no-scripts --no-autoloader --no-progress --ignore-platform-reqs | |
- name: install php cs fixer | |
run: composer bin csfixer install --no-progress --ignore-platform-reqs | |
- name: fix style | |
run: ./vendor/bin/php-cs-fixer fix | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: Commit changes | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Auto Code Style Fix | |
branch: ${{ steps.extract_branch.outputs.branch }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |