Skip to content

Check to see whether we can push without a license file #2

Check to see whether we can push without a license file

Check to see whether we can push without a license file #2

Workflow file for this run

name: License Check
on:
push:
branches:
- "*"
jobs:
license-check:
runs-on: ubuntu-latest
steps:
- name: Check if LICENSE file exists in fEMR
run: |
it [ ! -f "LICENSE"]; then
echo "ERROR: LICENSE file not found!"
exit 1
fi