Add In Progress list to Ideas list #77
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: 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] | |
| with: | |
| EXTNAME: phpbb/ideas # Your extension vendor/package name | |
| CODECOV: 1 # Run code coverage via codecov? 1 or 0 | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # Do not change this |