Add key=value required parameter to argparse help. #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: smoke | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
continue-on-error: true | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: python -m pip install --upgrade pip | |
- name: Install this package | |
run: pip install -e . | |
- name: Run the smoke tests | |
run: | | |
music_box configFile=tests/configs/analytical_config/my_config.json outputDir=tests/configs/analytical_config | |