From 9a5924a24b34448f00464965cd8ce8784cf089a3 Mon Sep 17 00:00:00 2001 From: muit Date: Thu, 5 Jan 2023 18:20:48 +0100 Subject: [PATCH] Use Python 3 on Github Actions --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b306b2f1..2b6ece9f1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,14 +45,14 @@ jobs: env: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} - run: python build.py -c ${{ matrix.config }} + run: python3 build.py -c ${{ matrix.config }} shell: sh - name: Install env: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} - run: python build.py -c ${{ matrix.config }} --no-build -i install --clean-build + run: python3 build.py -c ${{ matrix.config }} --no-build -i install --clean-build shell: sh - uses: actions/upload-artifact@v2