Skip to content

Add M4 change

Add M4 change #1100

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: make venv
- name: Test with pytest
run: |
. venv/bin/activate && pytest --cov=ddmc --cov-report=xml --cov-config=.github/workflows/coveragerc
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true