Skip to content

Commit

Permalink
Merge pull request #282 from nealian/setup-python-2.7
Browse files Browse the repository at this point in the history
Some fixes for test GitHub Action.
Thank you for this PR.
  • Loading branch information
andrivet authored Sep 7, 2024
2 parents e25213a + 985289a commit 8719cc6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: LizardByte/setup-python-action@master
with:
python-version: ${{ matrix.python-version }}
env:
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
Expand Down

0 comments on commit 8719cc6

Please sign in to comment.