Add an FPS counter to the Settings menu so you can see the FPS your devices get without the debugger's performance hit #48
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: Check pull request branch | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| check-branches: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check branches | |
| run: | | |
| if [ ${{ github.head_ref }} != "development" ] && [ ${{ github.base_ref }} == "master" ]; then | |
| echo "Merge requests to master are only allowed from development." | |
| exit 1 | |
| fi |