Skip to content

Bump mamba-org/setup-micromamba in the github-actions group (#232) #336

Bump mamba-org/setup-micromamba in the github-actions group (#232)

Bump mamba-org/setup-micromamba in the github-actions group (#232) #336

Workflow file for this run

name: Full Tests
# no permissions by default
permissions: {}
on:
pull_request:
push:
branches: [main]
jobs:
run:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@d6abac32e3a0d16ca7161790b7c20e0167cfdae8 # v3.2.0
with:
environment-name: TEST
init-shell: bash
create-args: >-
python=3 pip --file requirements.txt --file requirements-dev.txt --channel conda-forge
- name: Install library
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Tests
run: |
pytest -vv -rxs tests -m "headless"