From 61b7928758f477fe3a63c1846ecc0762c71720be Mon Sep 17 00:00:00 2001 From: Unrud Date: Sat, 29 Feb 2020 20:33:44 +0100 Subject: [PATCH] Revert 'Use system python3' --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 120443c..3f2f891 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,10 +32,14 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' runs-on: ubuntu-latest steps: + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: 3.x - name: Install Coveralls - run: python3 -m pip install coveralls + run: python -m pip install coveralls - name: Call Coveralls parallel builds webhook - shell: python3 {0} + shell: python env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: |