PyMISPWarningLists/.github/workflows/pytest.yml

41 lines
874 B
YAML
Raw Normal View History

2021-01-21 15:23:15 +01:00
name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2024-01-10 11:13:05 +01:00
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
2021-01-21 15:23:15 +01:00
steps:
2024-01-10 11:17:51 +01:00
- uses: actions/checkout@v4
2021-01-21 15:23:15 +01:00
- name: Set up Python ${{matrix.python-version}}
2024-01-10 11:17:51 +01:00
uses: actions/setup-python@v5
2021-01-21 15:23:15 +01:00
with:
python-version: ${{matrix.python-version}}
- name: Initialize submodules
run: git submodule update --init --recursive
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install -E fetch_lists
2021-01-21 15:23:15 +01:00
- name: Test with nosetests
run: |
2022-01-13 11:22:05 +01:00
poetry run pytest --cov=pymispwarninglists tests/tests.py
2021-01-21 15:23:15 +01:00
poetry run mypy .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1