From e86fedc9f62ec32bddac5cd9bdda8e6a2ddd7cf2 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Fri, 10 Feb 2023 16:16:46 +0100 Subject: [PATCH] make sure that .flake8_requirements exists --- .github/workflows/wf_lint.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wf_lint.yaml b/.github/workflows/wf_lint.yaml index 5bca14e..43d1926 100644 --- a/.github/workflows/wf_lint.yaml +++ b/.github/workflows/wf_lint.yaml @@ -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