Update phpBB GH Actions #12
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: | |
| name: Extension tests | |
| uses: phpbb-extensions/test-framework/.github/workflows/[email protected] # Must match PHPBB_BRANCH | |
| with: | |
| EXTNAME: lukewcs/togglectrl # Your extension vendor/package name | |
| PHPBB_BRANCH: 3.3.x # The phpBB branch to run tests on | |
| RUN_MYSQL_JOBS: 0 | |
| RUN_PGSQL_JOBS: 0 | |
| RUN_MSSQL_JOBS: 0 | |
| RUN_WINDOWS_JOBS: 0 | |
| PRIMARY_PHP_VERSION: '8.4' |