Skip to content

chore(deps): update conda-incubator/setup-miniconda action to v3 #267

chore(deps): update conda-incubator/setup-miniconda action to v3

chore(deps): update conda-incubator/setup-miniconda action to v3 #267

Workflow file for this run

name: pytest-conda
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.11]
os: [ubuntu-latest, windows-latest]
name: "Test: Python ${{ matrix.python-version }}, conda, ${{ matrix.os }}"
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: false
python-version: ${{ matrix.python-version }}
environment-file: environment.yml
activate-environment: at-python-template
# need to run tests in pwsh, or conda env won't be activated
- name: Check conda setup
shell: pwsh
run: |
conda info
python --version
conda list
- name: Test with pytest
shell: pwsh
run: |
python -m pytest tests