mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 14:17:38 +08:00
24 lines
532 B
YAML
24 lines
532 B
YAML
name: pytest
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
RunTest:
|
|
runs-on: ubuntu-latest
|
|
name: Unit tests
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11.4' # Define your project python version
|
|
- id: run-tests
|
|
uses: dima-engineer/pytest-reporter@v3
|
|
with:
|
|
cov-omit-list: tests/*
|
|
cov-threshold-single: 85
|
|
cov-threshold-total: 90
|
|
async-tests: true
|
|
poetry-version: 1.4.2 |