From 11dc6636bc9207548a80bc53e80e74d0fdb919eb Mon Sep 17 00:00:00 2001 From: Alexander Druz Date: Thu, 8 Feb 2024 22:56:48 +0100 Subject: [PATCH] Debug action --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c897b3..d23019e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,11 @@ jobs: matrix: | os: [ubuntu-latest, windows-latest, macos-latest] python-version: [3.8, 3.10, 3.12] + - run: echo ${{ steps.set-matrix.outputs.matrix }} + - id: set-matrix + run: echo "matrix=$MATRIX" >> $GITHUB_OUTPUT outputs: - matrix: ${{ steps.setup-matrix.outputs.matrix }} + matrix: ${{ steps.set-matrix.outputs.matrix }} # Check code formatting check-format: name: '🔍 Check Formatting'