Skip to content

Updated version number #10

Updated version number

Updated version number #10

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
jobs:
build-and-test:
name: coverage
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
- name: Configure Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: setup.py
- name: Install
run: |
python --version
python -m pip install .[dev]
- name: Run unit tests
run: |
coverage run -m unittest
- name: Check coverage
run: |
coverage report -m --fail-under 100