Skip to content

Merge branch 'testing-updates' into inversion-app-updates #145

Merge branch 'testing-updates' into inversion-app-updates

Merge branch 'testing-updates' into inversion-app-updates #145

Workflow file for this run

name: Testing
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
setup-build:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: [3.7, "3.10"]
steps:
- uses: actions/checkout@v2
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-dev.yml
init-shell: >-
bash
powershell
create-args: >-
python=${{ matrix.python-version }}
cache-environment: true
post-cleanup: 'all'
- name: Run Tests
shell: micromamba-shell {0}
run: |
mamba activate geosci-labs-dev
pip install -e . --no-deps
pytest . -v -s