Skip to content

Release and distribute workflows #27

Release and distribute workflows

Release and distribute workflows #27

Workflow file for this run

name: Test and Tag
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: mamba-org/provision-with-micromamba@main
with:
environment-name: tile-stitcher
environment-file: environment.yml
extra-specs: |
python=${{ matrix.python-version }}
- name: Pytest in conda environment
shell: bash -l {0}
run: |
python -m pip install .
pytest . tests