test matrix syntax

This commit is contained in:
2025-12-22 23:19:22 -05:00
parent a7239b3e83
commit 1390bab2df

15
.github/workflows/test_matrix.yml vendored Normal file
View File

@@ -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"