Skip to content

Commit

Permalink
Add py3.10 to github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeverling committed Jun 28, 2022
1 parent 62fd557 commit 7d9e4e6
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions flake8 black
- name: Lint
run: ./pep8.sh
- name: Test with tox
run: tox
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions flake8 black
- name: Lint
run: ./pep8.sh
- name: Test with tox
run: tox

0 comments on commit 7d9e4e6

Please sign in to comment.