Skip to content

changes in the green plot line in cal_bernabeu_r2 #13

changes in the green plot line in cal_bernabeu_r2

changes in the green plot line in cal_bernabeu_r2 #13

Workflow file for this run

name: tests
on:
push:
branches: ["main"]
paths-ignore:
- "docs/**"
- "*.md"
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
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 python library
run: pip install "."
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Test
run: pytest -m "not slow" -p "no:warnings"