Removed debug code to license_check.yml #16
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: Check for LICENSE File in femr Directory | |
on: | |
push: | |
branches: | |
- temr-dev-noah | |
jobs: | |
check-license-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Check if file exists | |
run: | | |
if [ ! -f "./LICENSE" ]; then | |
echo "File does not exist. Exiting with failure." | |
exit 1 | |
fi |