Skip to content

Merge pull request #12 from E3SM-Project/whannah/2026-STRONG-CA-updates #6

Merge pull request #12 from E3SM-Project/whannah/2026-STRONG-CA-updates

Merge pull request #12 from E3SM-Project/whannah/2026-STRONG-CA-updates #6

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy scipy xarray netCDF4 pyyaml numba pytest
pip install -e .
- name: Run tests
run: python -m pytest tests/ -v