- updated build process #17
Workflow file for this run
This file contains hidden or 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: CI | |
on: [push] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: PHP Composer | |
uses: php-actions/composer@v6 | |
- name: PHPStan Static Analysis | |
uses: php-actions/phpstan@v3 | |
with: | |
version: 2.1.17 | |
level: 8 | |
memory_limit: 2G | |
php_version: 8.1 | |
php_extensions: hash openssl shmop | |
configuration: tests/phpstan.neon | |
- name: PHPUnit Tests | |
uses: php-actions/phpunit@v3 | |
with: | |
version: 10.5 | |
configuration: tests/phpunit.xml | |
php_version: 8.1 | |
php_extensions: hash openssl shmop | |
test_suffix: .php | |
args: --testsuite parser |