Skip to content

Commit

Permalink
make sure that .flake8_requirements exists
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Feb 10, 2023
1 parent cb99424 commit e86fedc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/wf_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ jobs:
path: ~/.cache/pip
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ inputs.galaxy-head-sha }}_planemo_${{ steps.get-galaxy-sha.outputs.planemo-version }}
- name: Install flake8
run: pip install -r .flake8_requirements
run: |
touch .flake8_requirements
pip install -r .flake8_requirements
- name: Flake8
run: echo '${{ inputs.repository-list }}' | xargs -d '\n' flake8 --output-file pylint_report.txt --tee
- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit e86fedc

Please sign in to comment.