| 123456789101112131415161718192021222324252627 |
- on:
- pull_request:
- paths-ignore:
- - 'docs/**'
- - 'README.md'
- - 'CHANGELOG.md'
- - '.gitignore'
- - '.gitattributes'
- push:
- paths-ignore:
- - 'docs/**'
- - 'README.md'
- - 'CHANGELOG.md'
- - '.gitignore'
- - '.gitattributes'
- name: build
- jobs:
- phpunit:
- uses: yiisoft/actions/.github/workflows/phpunit.yml@master
- with:
- os: >-
- ['ubuntu-latest']
- php: >-
- ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|