Skip to content

Add conda test environment #4

Add conda test environment

Add conda test environment #4

Workflow file for this run

name: Test workflow
on: push
jobs:
unit_test_job:
runs-on: 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: Install package
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Run unit tests
run: pytest