Skip to content

Merge pull request #331 from GEOS-ESM/bug/pchakrab/fix-recurse-submod… #175

Merge pull request #331 from GEOS-ESM/bug/pchakrab/fix-recurse-submod…

Merge pull request #331 from GEOS-ESM/bug/pchakrab/fix-recurse-submod… #175

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "[email protected]", "[email protected]"]
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install rye
uses: eifinger/setup-rye@v4
- name: Sync dependencies
run: |
rye pin ${{ matrix.python-version }}
rye sync
- name: Run tests
run: |
rye test -v
timeout-minutes: 5