build.yml 536 B

123456789101112131415161718192021222324252627
  1. on:
  2. pull_request:
  3. paths-ignore:
  4. - 'docs/**'
  5. - 'README.md'
  6. - 'CHANGELOG.md'
  7. - '.gitignore'
  8. - '.gitattributes'
  9. push:
  10. paths-ignore:
  11. - 'docs/**'
  12. - 'README.md'
  13. - 'CHANGELOG.md'
  14. - '.gitignore'
  15. - '.gitattributes'
  16. name: build
  17. jobs:
  18. phpunit:
  19. uses: yiisoft/actions/.github/workflows/phpunit.yml@master
  20. with:
  21. os: >-
  22. ['ubuntu-latest']
  23. php: >-
  24. ['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']