Skip to content

no port in log behavior changed to not throw a build breaking error #90

no port in log behavior changed to not throw a build breaking error

no port in log behavior changed to not throw a build breaking error #90

Workflow file for this run

name: Check for LICENSE File in femr Directory
on:
push:
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