Skip to content

Commit

Permalink
[github-actions] fix python versions (2.7, 3.6) not found for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBldy committed Sep 11, 2023
1 parent db484ef commit 594dacf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ on:
jobs:
ci:
name: Test with different versions of Python 🐍
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
version: [2.7, 3.6, 3.11]
include:
- version: 2.7
container: python:2.7.18-buster
steps:
- uses: actions/checkout@v3
- name: Set up Python
if: matrix.version != '2.7'
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
Expand Down

0 comments on commit 594dacf

Please sign in to comment.