Skip to content

Merge pull request #37 from CSchoel/lorenz_example #19

Merge pull request #37 from CSchoel/lorenz_example

Merge pull request #37 from CSchoel/lorenz_example #19

Workflow file for this run

on:
push:
branches: ["main", "dev", "v*"]
name: build
jobs:
build:
strategy:
matrix:
python: ["3.7", "3.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- run: pip install codecov .
- run: coverage run -m unittest nolds.test_measures
- run: codecov
if: ${{ matrix.python == '3.10' }}