Skip to content

Fix function call

Fix function call #2

Workflow file for this run

name: ci
on: [push, pull_request, workflow_dispatch]
jobs:
test-and-coverage:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4
- name: Install Python requirements
run: |
pip install --upgrade pip
pip install pytest pytest-cov
- name: Test
run: pytest --cov
- name: Coveralls
uses: coverallsapp/github-action@v2