Skip to content

up-to-date ReCAP call numbers #37

up-to-date ReCAP call numbers

up-to-date ReCAP call numbers #37

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version}}
- name: Install Poetry with pipx
run: pipx install poetry
- name: Install dependencies
run: poetry install --no-root
- name: Run tests
run: poetry run python -m pytest --cov=record_validator/ --cov-report=xml
- name: Send report to Coveralls
uses: coverallsapp/github-action@v2
with:
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN}}
flag-name: ${{ matrix.python-version}}
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true