Scripted examples #8
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
name: Remove pre-merge tests! | |
on: | |
pull_request: | |
paths: | |
- 'tests/pre-merge/*.ipynb' | |
- 'tests/pre-merge/*.py' | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
Block-Merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pre-Merge tests present | |
run: | | |
echo " ⚠️ Please remove ipynb files from tests/pre-merge before merging into the main branch! ⚠️ " | |
exit 1 |