Skip to content

153 extend pytest html plus to GitHub marketplace for actions #3

153 extend pytest html plus to GitHub marketplace for actions

153 extend pytest html plus to GitHub marketplace for actions #3

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.13" ]
steps:
- name: 📥 Checkout code
uses: actions/checkout@v3
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: 🧪 Run tests with coverage
uses: reporterplus/pytest-html-plus-action@v1
with:
pytest-args: "--cov=pytest_html_plus tests/ --cov-fail-under=75 --cov-report=term --reruns 1"