From 5900ac90a5abf17b2dce945eb89764e858244a4c Mon Sep 17 00:00:00 2001 From: Markus Hauru Date: Mon, 3 Jun 2024 16:20:28 +0100 Subject: [PATCH] Add a step to print matrix variables to tests Action --- .github/workflows/Tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 9223ef771..7f8e8feec 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -60,6 +60,13 @@ jobs: arch: x86 steps: + - name: Print matrix variables + run: | + echo "OS: ${{ matrix.os }}" + echo "Architecture: ${{ matrix.arch }}" + echo "Julia version: ${{ matrix.version }}" + echo "Number of threads: ${{ matrix.num_threads }}" + echo "Test arguments: ${{ matrix.test_args }}" - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: