Skip to content

remove kblab archive and move args.alto_folder to function variable #37

remove kblab archive and move args.alto_folder to function variable

remove kblab archive and move args.alto_folder to function variable #37

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