Skip to content

Update install

Update install #273

Workflow file for this run

---
name: Test with pytest
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Env (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9"]
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
mamba-version: "*"
channels: conda-forge
auto-update-conda: true
- name: Install
run: |
conda activate test
./install.sh
- name: Test
run: |
pytest