Skip to content

Remove binder

Remove binder #4

Workflow file for this run

# Builds the repository using mamba
---
name: build
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
envs: [binder/environment.yml]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Conda environment for ${{ matrix.envs }} with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.envs }}