Skip to content

TWIX: Extract software version, scanner info, and seq name #25

TWIX: Extract software version, scanner info, and seq name

TWIX: Extract software version, scanner info, and seq name #25

Workflow file for this run

name: CI
on:
push:
branches:
- master
- /^v[0-9]+\.[0-9]+\.[0-9]+$/ # version tags for Documenter
- /^release-.*$/ # Release branches, if any.
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.9, 3.10.0, 3.11, 3.12]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v5
with:
version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Test with pytest
run: |
pip install pytest-cov
pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=suspect --cov-report lcov:cov.info
- name: Coveralls
uses: coverallsapp/github-action@v2