Skip to content

Commit

Permalink
update action workflow for new python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
danabens committed Mar 1, 2023
1 parent db8a283 commit d6d32b2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ jobs:
steps:
- uses: actions/checkout
- name: Setup Python 3.7
uses: actions/setup-python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.7'
- name: Setup Python 3.8
uses: actions/setup-python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: '3.8'
- name: Setup Python 3.9
uses: actions/setup-python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.9'
- name: Setup Python 3.10
uses: actions/setup-python
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'
- name: Setup Python 3.11
uses: actions/setup-python
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: '3.11'
- name: Install Dependencies
run: pip install tox
# runs unit tests for each python version
Expand Down

0 comments on commit d6d32b2

Please sign in to comment.