chg: Add more python versions

pull/129/head
Raphaël Vinot 2020-11-20 16:55:17 +01:00
parent 0ad2c4d573
commit a15a30850b
1 changed files with 9 additions and 4 deletions

View File

@ -6,17 +6,22 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Set up Python 3.7 - name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: 3.7 python-version: ${{matrix.python-version}}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip poetry python -m pip install --upgrade pip poetry
poetry install poetry install
- name: Test with nosetests - name: Test with nosetests
run: | run: |
poetry run mypy . poetry run mypy .