Skip to content

Fix 44

Fix 44 #192

Workflow file for this run

name: pytest_and_coveralls
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install coveralls
pip install pytest
pip install pytest-cov
pip install -r requirements.txt
pip install -e .
- name: Test with coverage
run: |
pytest --cov=kingdon
- name: Upload to Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install --upgrade coveralls
coveralls --service=github