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 1/2] =?UTF-8?q?=F0=9F=94=A7=20chore(lint.yml):=20update=20?= =?UTF-8?q?lint=20workflow=20to=20include=20additional=20paths=20for=20lin?= =?UTF-8?q?ting?= 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" From 04ca4ce2203b3f2dc85037bc7a37c9e5efb05938 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 9 Oct 2023 11:22:34 -0300 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=A7=20chore(ci.yml):=20update=20CI?= =?UTF-8?q?=20configuration=20to=20include=20specific=20paths=20for=20push?= =?UTF-8?q?=20and=20pull=5Frequest=20events=20=F0=9F=94=A7=20chore(ci.yml)?= =?UTF-8?q?:=20update=20CI=20configuration=20to=20include=20specific=20pat?= =?UTF-8?q?hs=20for=20push=20and=20pull=5Frequest=20events?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d81146d19..ae1c613e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,10 +4,18 @@ on: push: branches: - dev + paths: + - "tests/**" + - "src/backend/**" + - "pyproject.toml" pull_request: branches: - dev - main + paths: + - "tests/**" + - "src/backend/**" + - "pyproject.toml" jobs: build-and-test: