Skip to content

Fixed syntax error in license check yaml file #4

Fixed syntax error in license check yaml file

Fixed syntax error in license check yaml file #4

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: |
if [ ! -f "LICENSE" ]; then
echo "ERROR: LICENSE file not found!"
exit 1
fi