From bf634eee6646103ebe174510b59e8d6746532711 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sun, 10 Jan 2021 00:32:47 +0100 Subject: [PATCH] fix python action --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7af141cd2..a9bbda8ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,17 +31,16 @@ jobs: make html tests: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-20.04 strategy: matrix: - os: [ ubuntu-20.04 ] python-version: ['3.6', '3.7', '3.8'] steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: - default: "${{ matrix.python-version }}" + python-version: "${{ matrix.python-version }}" - name: Get pip cache dir id: pip-cache run: |