From 0b6522b6ce64d33b52d737f4db4f076d33a5c316 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 23 Mar 2023 23:21:39 -0700 Subject: [PATCH] Add missing items to integration test workflow path filter For the sake of efficiency, the integration test workflow is configured to only be triggered on changes to relevant files. Recent changes to the project infrastructure introduced additional relevant files, but those were not added to the path filter at that time. --- .github/workflows/test-integration.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 867c439..5752ca1 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -5,6 +5,9 @@ on: paths: - '.github/workflows/test-integration.yml' - '.github/workflows/testdata/**' + - '.python-version' + - 'poetry.lock' + - 'pyproject.toml' - 'action.yml' - 'compilesketches/**' @@ -12,6 +15,9 @@ on: paths: - '.github/workflows/test-integration.yml' - '.github/workflows/testdata/**' + - '.python-version' + - 'poetry.lock' + - 'pyproject.toml' - 'action.yml' - 'compilesketches/**'