Skip to content

Commit 6cefceb

Browse files
committed
use ubuntu-20.04 for tests involving python 3.7
1 parent 5c7d688 commit 6cefceb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/siibra-testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: '[test] unit test'
33
on: [push]
44
jobs:
55
unit-tests:
6-
runs-on: ubuntu-latest
6+
runs-on: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
77
env:
88
# unit tests should not need tokens
99

@@ -53,7 +53,7 @@ jobs:
5353
strategy:
5454
fail-fast: false
5555
matrix:
56-
os: [ 'ubuntu-latest', 'windows-latest' ]
56+
os: [ 'ubuntu-20.04', 'windows-latest' ] # use ubuntu-latest when python 3.7 is dropped
5757
python-version: [ '3.10', '3.9', '3.8', '3.7' ]
5858

5959
steps:
@@ -92,7 +92,7 @@ jobs:
9292
pytest -rx e2e
9393
9494
check-importable:
95-
runs-on: ubuntu-latest
95+
runs-on: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped
9696
env:
9797
KEYCLOAK_CLIENT_ID: ${{ secrets.KEYCLOAK_CLIENT_ID }}
9898
KEYCLOAK_CLIENT_SECRET: ${{ secrets.KEYCLOAK_CLIENT_SECRET }}

0 commit comments

Comments
 (0)