Skip to content

Commit

Permalink
Fix Github workflow for unit tests with Pyrhon 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Delgan committed Jun 23, 2024
1 parent 4243995 commit ae0323e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,20 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'

steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
env:
# Workaround for https://github.com/actions/setup-python/issues/866
PIP_TRUSTED_HOST: pypi.python.org pypi.org files.pythonhosted.org

- name: Install dependencies
run: |
Expand Down

0 comments on commit ae0323e

Please sign in to comment.