Skip to content

Remove LICENSE check comments #3

Remove LICENSE check comments

Remove LICENSE check comments #3

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