Skip to content

Min model error

Min model error #29

Workflow file for this run

name: OpenGHG Inversions tests
on:
push:
branches: [main, devel]
tags:
- '*'
pull_request:
branches: [main, devel]
jobs:
test:
name: Run tests on (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: ["ubuntu-latest"]
python-version: ["3.9"]
# python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install package
run: |
pip install --upgrade pip setuptools wheel
pip install -e .
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest tests/