Skip to content

Commit

Permalink
fix: use ubuntu 20-04 for python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
xgui3783 committed Nov 23, 2023
1 parent fab6700 commit e98a08a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@ name: '[tox]'
on: [push]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Python versions used in BrainVISA base images (i.e. Ubuntu LTS,
# at the moment 18.04 and 20.04) + the latest stable Python version
python-version: [ '3.10', '3.8', '3.6' ]
os: ['ubuntu-latest']
include:
- python-version: '3.6'
# see https://github.com/actions/setup-python/issues/355#issuecomment-1335042510
os: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit e98a08a

Please sign in to comment.