From 4b78140c82620fd432f0b68f22d20ab98e7ec1b1 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 9 Oct 2023 11:22:04 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(lint.yml):=20update=20lint?= =?UTF-8?q?=20workflow=20to=20include=20additional=20paths=20for=20linting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔧 chore(test.yml): update test workflow to include additional paths for testing --- .github/workflows/lint.yml | 9 +++++++++ .github/workflows/test.yml | 10 +++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f32cbfc6b..3ec6881ff 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bc2e193c6..e818715d9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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"