From 1390bab2df937d5acacafee1768cc8f0276842b8 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Mon, 22 Dec 2025 23:19:22 -0500 Subject: [PATCH] test matrix syntax --- .github/workflows/test_matrix.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test_matrix.yml diff --git a/.github/workflows/test_matrix.yml b/.github/workflows/test_matrix.yml new file mode 100644 index 0000000..92ca20f --- /dev/null +++ b/.github/workflows/test_matrix.yml @@ -0,0 +1,15 @@ +name: test matrix + +on: + workflow_dispatch: + +jobs: + test-single: + runs-on: linux + steps: + - run: echo "Single label works" + + test-array: + runs-on: [self-hosted, linux] + steps: + - run: echo "Array label works"