PyMISPGalaxies/.github/workflows/pytest.yml

41 lines
856 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-01-10 11:13:50 +01:00
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
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: |
2021-12-17 18:07:47 +01:00
poetry run pytest --cov=pymispgalaxies tests/tests.py
2020-11-30 14:20:38 +01:00
poetry run mypy .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1