PyMISPGalaxies/.github/workflows/pytest.yml

41 lines
861 B
YAML
Raw Normal View History

2020-11-30 14:20:38 +01:00
name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2024-11-20 11:35:06 +01:00
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2020-11-30 14:20:38 +01:00
steps:
2024-01-10 11:17:23 +01:00
- uses: actions/checkout@v4
2020-11-30 14:20:38 +01:00
- name: Set up Python ${{matrix.python-version}}
2024-01-10 11:17:23 +01:00
uses: actions/setup-python@v5
2020-11-30 14:20:38 +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
- name: Test with nosetests
run: |
2024-06-18 10:36:15 +02:00
poetry run pytest --cov=pymispgalaxies tests/test*.py
2020-11-30 14:20:38 +01:00
poetry run mypy .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4