Skip to content

Add JOSS paper template, github actions and update openalea dependenc… #9

Add JOSS paper template, github actions and update openalea dependenc…

Add JOSS paper template, github actions and update openalea dependenc… #9

Workflow file for this run

name: Test
on:
push:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
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
with:
generate-run-shell: true
environment-file: binder/environment.yml
- name: Test with pytest
run: |
pytest --disable-pytest-warnings
shell: micromamba-shell {0}