mirror of
https://github.com/snowykami/mbcp.git
synced 2024-11-22 22:27:38 +08:00
23 lines
397 B
YAML
23 lines
397 B
YAML
|
name: pytest
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
RunTest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Run pytest
|
||
|
uses: pavelzw/pytest-action@v2
|
||
|
with:
|
||
|
verbose: true
|
||
|
emoji: true
|
||
|
job-summary: true
|
||
|
custom-arguments: '-q'
|
||
|
click-to-expand: true
|
||
|
report-title: 'Test Report'
|