Revert 'Use system python3'

This commit is contained in:
Unrud 2020-02-29 20:33:44 +01:00 committed by GitHub
parent 1e3afcfe62
commit 61b7928758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,10 +32,14 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master' if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.x
- name: Install Coveralls - name: Install Coveralls
run: python3 -m pip install coveralls run: python -m pip install coveralls
- name: Call Coveralls parallel builds webhook - name: Call Coveralls parallel builds webhook
shell: python3 {0} shell: python
env: env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: | run: |