Skip to content

ci: add support of visualizing test coverage (#34) #71

ci: add support of visualizing test coverage (#34)

ci: add support of visualizing test coverage (#34) #71

name: build-and-test
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
paths:
- "**"
- "!docs/**"
- "!README.md"
- "!.github/**"
- .github/workflows/build-and-test.yaml
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: pip install poetry
- name: Setup python (with pip)
uses: actions/setup-python@v5
with:
cache: "poetry"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest --cov-report xml:coverage.xml --cov=t4_devkit
- name: Get test coverage
uses: orgoro/[email protected]
continue-on-error: true
with:
coverageFile: ./coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}
thresholdAll: 0.5
thresholdNew: 0.8
thresholdModified: 0.8