Skip to content

test: chongyun

test: chongyun #131

Workflow file for this run

name: pytest
on:
- push
- pull_request
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests with coverage
run: |
python -m pytest --cov
coverage xml
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2