Add further checks for invalid code to workshop request forms #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CI for feature branches - contains only test runs | |
name: CI (feature) | |
# don't run CI for every push of any feature branch | |
# but do run CI if a PR is made with any feature branch as a base | |
on: | |
pull_request: | |
branches: [ 'feature/**' ] | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml |