Correct WIP and no ci label usage #744
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: PyLama Lint | ||
on: | ||
# For manual exec | ||
# (https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/) | ||
workflow_dispatch: {} | ||
push: | ||
branches: [main, develop] | ||
pull_request: | ||
types: [opened, synchronize, edited, labeled, unlabeled] | ||
branches: [main, develop] | ||
jobs: | ||
pylama: | ||
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') }} | ||
Check failure on line 15 in .github/workflows/pylama.yml GitHub Actions / PyLama LintInvalid workflow file
|
||
name: PyLama Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Lint | ||
run: | | ||
pip install pylama==8.4.1 pyflakes==3.0.1 pylint==2.15.9 pydocstyle==6.1.1 2>&1 >/dev/null | ||
pylama beeflow/ |