Skip to content

Commit

Permalink
Merge pull request #11 from renalreg/actions-update
Browse files Browse the repository at this point in the history
Update to use actions/setup-python@v2
  • Loading branch information
jtc42 authored Feb 21, 2022
2 parents 47b301a + d2f0fa4 commit 45bb9a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.5", "3.6", "3.7", "3.8", "3.9"]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v1

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
python-version: ${{ matrix.python-version }}

- name: Install package
run: |
Expand Down

0 comments on commit 45bb9a0

Please sign in to comment.