Skip to content

Commit

Permalink
ci: python 3.7, 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Oct 18, 2021
1 parent e41ba52 commit 31cd7dc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -4,16 +4,22 @@ on:
push:
paths:
- "**.py"
- ".github/workflows/ci.yml"

jobs:

linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.10' ]
name: Lint Python ${{ matrix.python-version }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}

- run: pip install .[lint]

Expand Down

0 comments on commit 31cd7dc

Please sign in to comment.