Skip to content

Commit

Permalink
run workflow on workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Jun 24, 2024
1 parent 4d3ebc9 commit 22162b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ name: Typing via mypy
on:
push:
branches: [ "master", "stable" ]
paths: ["src/**.py", "tests/**.py", "src/**/py.typed"]
paths: ["src/**.py", "tests/**.py", "src/**/py.typed", ".github/workflows/lint-mypy.yml"]

pull_request:
branches: [ "master", "stable" ]
paths: ["src/**.py", "tests/**.py", "src/**/py.typed"]
paths: ["src/**.py", "tests/**.py", "src/**/py.typed", ".github/workflows/lint-mypy.yml"]

workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ name: Linting via ruff
on:
push:
branches: [ "master", "stable" ]
paths: ["src/**.py", "tests/**"]
paths: ["src/**.py", "tests/**", ".github/workflows/lint-ruff.yml"]

pull_request:
branches: [ "master", "stable" ]
paths: ["src/**.py", "tests/**"]
paths: ["src/**.py", "tests/**", ".github/workflows/lint-ruff.yml"]

workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ name: Testing via pytest
on:
push:
branches: [ "master", "stable" ]
paths: ["src/**.py", "tests/**"]
paths: ["src/**.py", "tests/**", ".github/workflows/lint-pytest.yml"]

pull_request:
branches: [ "master", "stable" ]
paths: ["src/**.py", "tests/**"]
paths: ["src/**.py", "tests/**", ".github/workflows/lint-pytest.yml"]

workflow_dispatch:

Expand Down

0 comments on commit 22162b6

Please sign in to comment.