Skip to content

Commit 9909007

Browse files
test python 3.6 on windows
1 parent ba1a9bc commit 9909007

File tree

1 file changed

+10
-18
lines changed

1 file changed

+10
-18
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,16 @@ jobs:
1111
platform: [ubuntu-22.04, windows-latest]
1212
runs-on: ${{ matrix.platform }}
1313
steps:
14-
# Now that python 3.6 and 3.8 are EOL, we should remove them from the test matrix.
15-
# Perhaps we no longer need to test python 3.6 and 3.8, it's up to you.
16-
# - uses: actions/checkout@v3
17-
# - name: Set up Python 3.6 (Windows)
18-
# if: matrix.platform == 'windows-latest'
19-
# uses: actions/setup-python@v4
20-
# with:
21-
# python-version: "3.6"
22-
# - name: Set up Python 3.6 (Ubuntu)
23-
# if: matrix.platform == 'ubuntu-22.04'
24-
# run: |
25-
# sudo add-apt-repository ppa:deadsnakes/ppa
26-
# sudo apt-get update
27-
# sudo apt-get install -y python3.6
28-
# - name: Set up Python 3.8
29-
# uses: actions/setup-python@v4
30-
# with:
31-
# python-version: "3.8"
14+
- uses: actions/checkout@v3
15+
- name: Set up Python 3.6 (Windows)
16+
if: matrix.platform == 'windows-latest'
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: "3.6"
20+
- name: Set up Python 3.8
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: "3.8"
3224
- name: Set up Python 3.10
3325
uses: actions/setup-python@v4
3426
with:

0 commit comments

Comments
 (0)