Skip to content

if we have USE_GPU_PRINTF = TRUE, then fflush the output after burn #344

if we have USE_GPU_PRINTF = TRUE, then fflush the output after burn

if we have USE_GPU_PRINTF = TRUE, then fflush the output after burn #344

Workflow file for this run

name: check PR branch
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
jobs:
check-PR-branch:
runs-on: ubuntu-latest
steps:
- name: PRs should not target main
run: |
if [[ "${{ github.base_ref }}" == "main" ]]; then
echo 'Pull requests must not be made against main. Please target development instead.'
exit 1
fi