From 20f8e053931fdef8a9413cc6229286c5d9ed152f Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Fri, 3 Nov 2023 09:47:19 +0100 Subject: [PATCH] test: explicitly run tests using 'python3' - 'python' is Python 2.7 on MacOS 12 --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6435391..ffd7fad 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -23,9 +23,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Show initial environment - run: python cue-test.py env + run: python3 cue-test.py env - name: Run unit tests - run: python cue-test.py + run: python3 cue-test.py build-linux: name: ${{ matrix.cmp }} / ${{ matrix.configuration }} / ${{ matrix.os }}