Use centralized test framework #81
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: Tests | |
on: | |
push: | |
branches: # Run tests when commits are pushed to these branches in your repo | |
- main | |
- master | |
- develop | |
- dev/* | |
pull_request: # Run tests when pull requests are made on these branches in your repo | |
branches: | |
- main | |
- master | |
- develop | |
- dev/* | |
jobs: | |
call-tests: | |
uses: phpbb-extensions/test-framework/.github/workflows/tests.yml@master | |
with: | |
EXTNAME: phpbb/skeleton # Your extension vendor/package name | |
SNIFF: 1 # Run code sniffer on your code? 1 or 0 | |
IMAGE_ICC: 1 # Run icc profile sniffer on your images? 1 or 0 | |
EPV: 0 # Run EPV (Extension Pre Validator) on your code? 1 or 0 | |
EXECUTABLE_FILES: 1 # Run check for executable files? 1 or 0 | |
PHPBB_BRANCH: master # The phpBB branch to run tests on |