Skip to content

Test conda environment on all operating systems #3

Test conda environment on all operating systems

Test conda environment on all operating systems #3

Workflow file for this run

name: Test Env
on:
push:
branches: [main]
pull_request:
branches: [main, "release/*", "dev"]
jobs:
run_env_tests:
name: Test Env (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
environment-file: environment.yaml
auto-activate-base: false
- shell: bash -l {0}
run: |
conda info
conda list