build(deps): bump mamba-org/setup-micromamba (#11) #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: null | |
env: | |
PY_COLORS: "1" | |
jobs: | |
tests: | |
name: tests | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
fetch-depth: 0 | |
- uses: mamba-org/setup-micromamba@add3a49764cedee8ee24e82dfde87f5bc2914462 # v2.0.7 | |
with: | |
environment-file: environment.yml | |
environment-name: conda-oci | |
- name: configure conda and install code | |
shell: bash -el {0} | |
run: | | |
python -m pip install -v --no-deps --no-build-isolation -e . | |
- name: test | |
shell: bash -el {0} | |
run: | | |
pytest -vvs conda_oci |