Skip to content

Add an FPS counter to the Settings menu so you can see the FPS your devices get without the debugger's performance hit #48

Add an FPS counter to the Settings menu so you can see the FPS your devices get without the debugger's performance hit

Add an FPS counter to the Settings menu so you can see the FPS your devices get without the debugger's performance hit #48

Workflow file for this run

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