Skip to content

Merge remote-tracking branch 'origin/master' into devel #48

Merge remote-tracking branch 'origin/master' into devel

Merge remote-tracking branch 'origin/master' into devel #48

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Coverage
on:
pull_request:
branches: [ "master" ]
push:
branches: [ "devel" ]
permissions:
contents: read
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Run coverage
run: |
# stop the build if there are Python syntax errors or undefined names
make cov