Skip to content

Commit

Permalink
Use strings for python-version
Browse files Browse the repository at this point in the history
  • Loading branch information
bhrutledge committed Nov 6, 2021
1 parent b234ebd commit 6884a19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.8'
- name: Install dependencies
run: python -m pip install tox
- name: Run linting
Expand All @@ -23,7 +23,7 @@ jobs:
test:
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, 3.10]
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- uses: actions/setup-python@v2
with:
# Mininum supported Python version
python-version: 3.6
python-version: '3.6'
- name: Install dependencies
run: python -m pip install tox
- name: Build docs
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.8'
- name: Install dependencies
run: python -m pip install tox
- name: Release
Expand Down

0 comments on commit 6884a19

Please sign in to comment.