Skip to content

changed the version of coveralls #87

changed the version of coveralls

changed the version of coveralls #87

Workflow file for this run

name: Coveralls
on:
push:
branches: [ "main", "develop"]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install coverage coveralls
pip install -e .
- name: Tests with coverage
run: |
coverage run --omit='./results/*','./docs/*','./examples/*' -m unittest discover tests
- name: Coveralls
uses: coverallsapp/[email protected]