From 2bcbdafcef5fd64744b9962856a4d01c586b8216 Mon Sep 17 00:00:00 2001 From: FiveMovesAhead Date: Sat, 7 Jun 2025 19:00:48 +0100 Subject: [PATCH] Skip testing on algorithm branches. --- .github/workflows/test_workspace.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test_workspace.yml b/.github/workflows/test_workspace.yml index c7a2a21..9fec5c1 100644 --- a/.github/workflows/test_workspace.yml +++ b/.github/workflows/test_workspace.yml @@ -6,12 +6,18 @@ on: - 'satisfiability/*' - 'vehicle_routing/*' - 'knapsack/*' + - 'vector_search/*' + - 'hypergraph/*' - 'test/satisfiability/*' - 'test/vehicle_routing/*' - 'test/knapsack/*' + - 'test/vector_search/*' + - 'test/hypergraph/*' - 'dev/satisfiability/*' - 'dev/vehicle_routing/*' - 'dev/knapsack/*' + - 'dev/vector_search/*' + - 'dev/hypergraph/*' jobs: test_workspace: