Skip to content

Sync Python checking CI workflow with template #221

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Aug 2, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add all relevant files to "Check Python" workflow's paths filter
Even though not all these paths apply to this specific project, this change is pulled in from a template workflow which
is intended to be applicable to any project containing Python files.
  • Loading branch information
per1234 committed Aug 2, 2021
commit d12a910b7f0d4e39a486dec7ee6b82a4f6c0adbe
18 changes: 12 additions & 6 deletions .github/workflows/check-python-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,23 @@ on:
push:
paths:
- ".github/workflows/check-python-task.ya?ml"
- "**/.flake8"
- "**/poetry.lock"
- "**/pyproject.toml"
- "**/setup.cfg"
- "Taskfile.ya?ml"
- "**/tox.ini"
- "**.py"
- ".flake8"
- "pyproject.toml"
- "Taskfile.yml"
pull_request:
paths:
- ".github/workflows/check-python-task.ya?ml"
- "**/.flake8"
- "**/poetry.lock"
- "**/pyproject.toml"
- "**/setup.cfg"
- "Taskfile.ya?ml"
- "**/tox.ini"
- "**.py"
- ".flake8"
- "pyproject.toml"
- "Taskfile.yml"

jobs:
lint:
Expand Down