chore(deps): update actions/checkout action to v4.2.0 #168
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
name: "Continuous Integration" | |
jobs: | |
supported-versions-matrix: | |
name: Supported Versions Matrix | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.supported-versions-matrix.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: supported-versions-matrix | |
uses: WyriHaximus/github-action-composer-php-versions-in-range@v1 | |
tests: | |
name: "Grumphp" | |
runs-on: ${{ matrix.operating-system }} | |
needs: | |
- supported-versions-matrix | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macOS-latest] | |
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }} | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Graphviz | |
uses: kamiazya/setup-graphviz@v1 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: ast,mbstring,xdebug,pcov | |
tools: pecl | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
- name: Run Grumphp | |
run: vendor/bin/grumphp run | |
- name: Send Scrutinizer data | |
run: | | |
composer require scrutinizer/ocular --dev | |
vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/coverage/clover.xml | |
continue-on-error: true |