Skip to content

Commit

Permalink
Use Python 3 on Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Jan 5, 2023
1 parent dcb73b8 commit 9a5924a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a5924a

Please sign in to comment.