🔧 chore(lint.yml): update lint workflow to include additional paths for linting

🔧 chore(test.yml): update test workflow to include additional paths for testing
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-09 11:22:04 -03:00
commit 4b78140c82
2 changed files with 18 additions and 1 deletions

View file

@ -3,7 +3,16 @@ name: lint
on:
push:
branches: [main]
paths:
- "tests/**"
- "src/backend/**"
- "pyproject.toml"
pull_request:
paths:
- "tests/**"
- "src/backend/**"
- "pyproject.toml"
env:
POETRY_VERSION: "1.4.0"

View file

@ -3,9 +3,17 @@ name: test
on:
push:
branches: [main]
paths:
- "tests/**"
- "src/backend/**"
- "pyproject.toml"
pull_request:
branches: [dev]
paths:
- "tests/**"
- "src/backend/**"
- "pyproject.toml"
env:
POETRY_VERSION: "1.5.0"