lookyloo/.github/workflows/nosetests.yml

32 lines
601 B
YAML
Raw Normal View History

name: Python application
2020-11-30 14:09:39 +01:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
2020-11-20 16:55:17 +01:00
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
2020-11-20 16:55:17 +01:00
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v2
with:
2020-11-20 16:55:17 +01:00
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install
2020-11-20 16:55:17 +01:00
- name: Test with nosetests
run: |
poetry run mypy .