# When creating a new workflow in GitHub’s action builder the default trigger is the push event. We want to extend this to push and pull request events.
on:[push, pull_request]
on:
push:
branches:
- master
pull_request:
types:[opened, synchronize ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)