release v0.6.1 #103
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
on: push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Testing with PHP ${{ matrix.php }} | |
strategy: | |
matrix: | |
php: [8.2, 8.3] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip | |
coverage: none | |
- name: Install Composer dependencies | |
run: composer update --prefer-dist --no-interaction --no-ansi --no-progress | |
- name: Execute tests | |
run: | | |
vendor/bin/pint --test -v | |
vendor/bin/phpunit |