Skip to content

fix: adjust to new metadata folder structureQ #40

fix: adjust to new metadata folder structureQ

fix: adjust to new metadata folder structureQ #40

Workflow file for this run

name: Run scripts with help flag
on: [push]
jobs:
notebooks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install wheel setuptools pip --upgrade
pip install -r requirements.txt
- name: Test scripts
run: |
for filename in src/*.py; do
echo "$filename"
python "$filename" --help
done