feat: Add support for condition single operator (no value) #38
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: TESTS | |
on: | |
pull_request: null | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['7.4', '8.0', '8.1', '8.2'] | |
name: PHP ${{ matrix.php }} tests | |
steps: | |
# basically git clone | |
- uses: actions/checkout@v2 | |
# use PHP of specific version | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none # disable xdebug, pcov | |
# if we 2 steps like this, we can better see if composer failed or tests | |
- run: composer update --no-progress | |
- run: vendor/bin/phpunit |