Changes run_dir in pycbc_make_offline_grb_workflow to allow proper output-dir config #737
Workflow file for this run
This file contains hidden or 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: Flake8 check | |
| on: [pull_request] | |
| jobs: | |
| flake8_unused_imports: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.11 | |
| - name: Install flake8 | |
| run: pip install flake8 | |
| - name: Checking executables for unused imports | |
| run: flake8 --select=F401 $(find bin -type f -name pycbc_*) | |
| - name: Checking modules for unused imports | |
| run: | | |
| flake8 --select=F401 $(find pycbc | grep '\.py$' | grep -v -e __init__ -e 'version.py') | |
| - name: Checking tests for unused imports | |
| run: | | |
| flake8 --select=F401 $(find test | grep '\.py$' | grep -v test_schemes) | |