Skip to content

Develop 0.1.6

Develop 0.1.6 #54

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- 'main'
jobs:
check_target_branch:
runs-on: ubuntu-latest
steps:
- name: Check if PR is from develop branch
if: contains(${{ github.event.pull_request.head.ref }}, 'develop_')
run: |
echo ${{ github.event.pull_request.head.ref }}
echo "Pull request is not from the develop branch"
exit 1
autoformatting:
needs: check_target_branch
uses: ./.github/workflows/autoformatting.yml
testing:
needs: autoformatting
uses: ./.github/workflows/testing.yml