summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2022-12-09 08:31:17 +0100
committerMichael Howitz <mh@gocept.com>2022-12-09 08:33:41 +0100
commite5bd50d9ef71534220e0cad15136e7f948fd5fdf (patch)
treef6148d5b90f955a10b92538a404a691cde724295 /.github/workflows
parenta423790e14b44c11e180a9d082d57ff2cc7c7389 (diff)
downloadzope-location-master.tar.gz
Fix GHA: ubuntu-latest no longer contains Python 2.7 up to 3.6HEADmaster
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 3c40fa5..cedf24b 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os:
- - ubuntu
+ - ["ubuntu", "ubuntu-20.04"]
config:
# [Python version, tox env]
- ["3.9", "lint"]
@@ -34,7 +34,7 @@ jobs:
- ["3.9", "docs"]
- ["3.9", "coverage"]
- runs-on: ${{ matrix.os }}-latest
+ runs-on: ${{ matrix.os[1] }}
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name: ${{ matrix.config[1] }}
steps: