Skip to content

Commit

Permalink
Ensure requirements.txt file exists and contains "reflex" for each ex…
Browse files Browse the repository at this point in the history
…ample
  • Loading branch information
jackie-pc committed Aug 30, 2023
1 parent 3b046d9 commit 481ac5f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check_requirements.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: check-requirements
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
check-requirements:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run:
RC=0
for f in $(ls -1); do
if [[ -d $f ]]; then
if [[ ! -f $f/requirements.txt ]]; then
echo "$f/requirements.txt is MISSING"
RC=1
continue
fi
if !( grep -w "^reflex" $f/requirements.txt >/dev/null 2>&1 ); then
echo "$f/requirements.txt does not contain 'reflex'"
RC=1
continue
fi
fi
done
exit $RC

0 comments on commit 481ac5f

Please sign in to comment.