Skip to content

Run test suite as GitHub workflow #4

Run test suite as GitHub workflow

Run test suite as GitHub workflow #4

Workflow file for this run

name: Validate pull request
on:
pull_request:
jobs:
validate_branches:
name: Validate branches
runs-on: ubuntu-latest
steps:
- name: Validate branches
if: github.base_ref == 'master' && github.head_ref != 'develop'
run: |
echo "Contributions should be made against the develop branch, see README.rst."
exit 1