Skip to content

feat: add package skeleton and utils (#1) #5

feat: add package skeleton and utils (#1)

feat: add package skeleton and utils (#1) #5

Workflow file for this run

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- uses: mamba-org/setup-micromamba@0dea6379afdaffa5d528b3d1dabc45da37f443fc # v2.0.4
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