Add support for variable amounts #9
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 PHP static code checks | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
code-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Check coding style | |
run: composer cs | |
- name: Execute phpstan checks | |
run: composer phpstan | |
- name: Execute tests | |
run: composer test |