Skip to content

Merge branch 'documentation' #47

Merge branch 'documentation'

Merge branch 'documentation' #47

Workflow file for this run

name: Test workflow
on: push
jobs:
unit_test_job:
runs-on: ubuntu-latest
container: continuumio/miniconda3
name: Run unit tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create conda environment
run: conda env create -y -n testenv -f conda.yaml
- name: Dump conda environment
run: conda list -n testenv
- name: Install package
run: conda run -n testenv pip install .
- name: Install pytest
run: conda run -n testenv pip install pytest
- name: Run unit tests
run: conda run -n testenv pytest