Skip to content

Commit

Permalink
Use 3.10 not 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SijmenHuizenga committed Apr 9, 2023
1 parent 39fa389 commit fd6703b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: 'Set up Python ${{ matrix.python-version }}'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install tox tox-gh-actions
- name: Tests
run: tox
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: 'python-${{ matrix.python-version }}'
COVERALLS_FLAG_NAME: python-${{ matrix.python-version }}
COVERALLS_PARALLEL: true
run: |
pip3 install coveralls
Expand Down

0 comments on commit fd6703b

Please sign in to comment.