Skip to content

Commit

Permalink
Merge pull request #174 from nicolasbock/py310
Browse files Browse the repository at this point in the history
Add Python 3.10 for testing
  • Loading branch information
nicolasbock authored May 16, 2022
2 parents bdc4a3c + 736565c commit 6a29d21
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ on:
jobs:

build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
python-version: ['3.8', '3.9']
python-version: ['3.8', '3.9', '3.10']
name: Python ${{ matrix.python-version }} build
steps:

Expand Down Expand Up @@ -51,19 +51,19 @@ jobs:

- name: Bandit
run: tox -e bandit
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.10' }}

- name: Archive bandit results
uses: actions/upload-artifact@v2
with:
name: bandit log
path: .tox/bandit/log
if: ${{ matrix.python-version == '3.9' && failure() }}
if: ${{ matrix.python-version == '3.10' && failure() }}

- name: Pep8
run: tox -e pep8
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.10' }}

- name: Build docs
run: tox -e docs
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.10' }}

0 comments on commit 6a29d21

Please sign in to comment.