Change run typing test for multiple Python versions

This commit is contained in:
Rotzbua 2023-01-08 21:21:21 +01:00 committed by Florian Festi
parent fceb5f2dfe
commit 3511046ae1
1 changed files with 6 additions and 2 deletions

View File

@ -9,12 +9,16 @@ jobs:
# Build job
typing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: ${{ matrix.python-version }}
cache: "pip" # caching pip dependencies
- name: Install dependencies