Skip to content

Commit

Permalink
Add python 3.10 to test
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Brange committed Oct 11, 2021
1 parent 33e32dc commit c65a300
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/LintAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8, 3.9]
python: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand All @@ -18,6 +18,7 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install deps
run: |
pip install -U pip
pip install -r requirements.txt
- name: Run tests
run: pytest
Expand All @@ -26,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8, 3.9]
python: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand All @@ -35,6 +36,7 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install deps
run: |
pip install -U pip
pip install -r requirements.txt
- name: Lint with flake8
run: flake8
1 change: 0 additions & 1 deletion .github/workflows/StageProdDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: StageProdDeploy
on:
release:
types: [published]
workflow_dispatch:

jobs:
test-and-lint:
Expand Down

0 comments on commit c65a300

Please sign in to comment.