Bump phpunit/phpunit from 9.6.20 to 9.6.21 #79
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: Run unit tests with PHPUnit | |
on: [push] | |
jobs: | |
phpunit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Validate composer.json and composer.lock | |
uses: php-actions/composer@v6 | |
with: | |
php_version: 8.0 | |
command: validate | |
- name: Install dependencies | |
uses: php-actions/composer@v6 | |
with: | |
php_version: 8.0 | |
args: --prefer-dist --no-progress --no-suggest --no-plugins | |
- name: Run unit tests with PHPUnit | |
uses: php-actions/composer@v6 | |
with: | |
php_version: 8.0 | |
command: phpunit |