fix: uncomment paths in test workflow for push and pull_request triggers
This commit is contained in:
parent
760269c07a
commit
65eb82176d
|
|
@ -4,19 +4,19 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "**"
|
||||||
# paths:
|
paths:
|
||||||
# - '**.py'
|
- '**.py'
|
||||||
# - 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
# - 'poetry.lock'
|
- 'poetry.lock'
|
||||||
# - 'tests/**'
|
- 'tests/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "**"
|
||||||
# paths:
|
paths:
|
||||||
# - '**.py'
|
- '**.py'
|
||||||
# - 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
# - 'poetry.lock'
|
- 'poetry.lock'
|
||||||
# - 'tests/**'
|
- 'tests/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue