Skip to content

Commit

Permalink
Set up all supported versions of pythons.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlfredChester committed Jan 25, 2025
1 parent e4371a2 commit 2d49a12
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,31 @@ jobs:
- name: Set up Python 3.6
uses: actions/setup-python@v4
with:
python-version: '3.6'
python-version: "3.6"
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: "3.7"
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: "3.8"
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: "3.10"
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 2d49a12

Please sign in to comment.