From 685936d2b430d41ff68454ac9fec6d195f5de982 Mon Sep 17 00:00:00 2001 From: janwvjaarsveld Date: Tue, 20 Aug 2024 22:38:07 +0200 Subject: [PATCH] chore: workflow test --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..5ba6859 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,11 @@ +name: Test strategy +on: workflow_dispatch + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: ${{ fromJSON({"include":[{"node":14,"something":"else"}]}) }} + steps: + - run: echo "Mock test logs ${{ strategy.job-index }}" + - run: echo "Mock test logs ${{ matrix.test-group }} ${{ matrix.node }} ${{ matrix.something }}"