From 417238f3fc1a909d87fc2a4b37e8309a18053f45 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Tue, 27 Aug 2024 14:55:50 -0600 Subject: [PATCH] Filter integration test runs by path --- .github/workflows/integration_test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 3c33ee287..aeb94e423 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -4,10 +4,21 @@ name: "Integration test" on: pull_request: + paths: + - ".github/**" + - "icepyx/**/*.py" + - "pyproject.toml" + - "requirements*.txt" + push: branches: - "main" - "development" + paths: # IMPORTANT: Keep in sync with pull request paths + - ".github/**" + - "icepyx/**/*.py" + - "pyproject.toml" + - "requirements*.txt" jobs: test: