Skip to content

Fix Incorrect Regular Expression Matching #3

Fix Incorrect Regular Expression Matching

Fix Incorrect Regular Expression Matching #3

Workflow file for this run

name: "Unit tests"
on:
push:
branches:
- main
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
jobs:
linux:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.12"] # Oldest and newest supported Python versions
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install MultiQC
run: pip install '.[dev]'
- name: Download test data
uses: actions/checkout@v4
with:
repository: MultiQC/test-data
path: test-data
- run: pytest -vv tests --cov=multiqc --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}