Skip to content

Fix output dir requirement, SSA output time dimension, and pin Python version #24

Fix output dir requirement, SSA output time dimension, and pin Python version

Fix output dir requirement, SSA output time dimension, and pin Python version #24

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [
"3.11",
"3.12"
]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: pip install .[dev]
- name: Formatting and Linters
run: ruff check
- name: Tests
run: pytest tests -r a