Skip to content

chore: add github actions CI tests #1

chore: add github actions CI tests

chore: add github actions CI tests #1

Workflow file for this run

name: Test
on:
push:
branches:
- main
- ci-test
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
activate-environment: snazzy-env
environment-file: environment.yml
- name: Test with pytest
run: pytest