Skip to content

Build and test [Python 3.9, 3.10, 3.11] #212

Build and test [Python 3.9, 3.10, 3.11]

Build and test [Python 3.9, 3.10, 3.11] #212

Workflow file for this run

name: Build and test [Python 3.9, 3.10, 3.11]
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Miniconda using Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: microdf
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- name: Build
shell: bash -l {0}
run: pip install -e .
- name: Test
shell: bash -l {0}
run: pytest