Skip to content

Add regression test analysis #596

Add regression test analysis

Add regression test analysis #596

Workflow file for this run

name: CI
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
push: { branches: [ "main" ] }
pull_request: { branches: [ "main" ] }
jobs:
test:
runs-on: ubuntu-latest
container: condaforge/mambaforge:latest
steps:
- uses: actions/checkout@v3.3.0
- name: Setup Conda Environment
run: |
apt update && apt install -y git make
make env
make lint
make test
make docs-build
- name: CodeCov
uses: codecov/codecov-action@v3.1.1
with:
file: ./coverage.xml
flags: unittests