Skip to content

fix: resolve regressions in cover and climate due to jmespath introduction #126

fix: resolve regressions in cover and climate due to jmespath introduction

fix: resolve regressions in cover and climate due to jmespath introduction #126

Workflow file for this run

name: Python application
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
args: 'check'
- uses: chartboost/ruff-action@v1
with:
args: 'format'
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v3
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_tests.txt ]; then pip install -r requirements_tests.txt; fi
- name: Test with pytest
run: |
pytest