Skip to content

Add actions and JOSS template (#10) #1

Add actions and JOSS template (#10)

Add actions and JOSS template (#10) #1

Workflow file for this run

name: Test
on:
push:
branches:
- master
- main
- 10-joss-paper
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
uses: mamba-org/setup-micromamba@v1.4
with:
environment-file: binder/environment.yml
- name: Test with pytest
run: |
pytest