Skip to content

Add Flask route for doc summary page #8

Add Flask route for doc summary page

Add Flask route for doc summary page #8

Workflow file for this run

name: build
permissions: read-all
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.13']
runs-on: ${{ matrix.os }}
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 dependencies
run: |
pip install pytest pytest-cov flask
- name: Test
run: |
pytest --cov=www/results --cov-branch --cov-report=xml -v www/test
- uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}