We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb0a78c commit d829f4bCopy full SHA for d829f4b
.github/workflows/ci.yml
@@ -6,16 +6,15 @@ jobs:
6
strategy:
7
matrix:
8
python-version:
9
+ - "3.5" # Found on Ubuntu 16.04
10
- "3.8" # Found on Ubuntu 18.04 / 20.04
11
- "3.10" # Found on Ubuntu 22.04
12
- "3.12" # Found on Ubuntu 24.04
13
+ container:
14
+ image: python:${{ matrix.python-version }}
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v4
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- with:
18
- python-version: ${{ matrix.python-version }}
19
- name: Set up Git inside test environment
20
run: |
21
git config --global user.name test
0 commit comments