Skip to content

Merge branch 'develop' into add-spack-install #121

Merge branch 'develop' into add-spack-install

Merge branch 'develop' into add-spack-install #121

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: |
source .venv/bin/activate
python tests/test_mepo_commands.py -v
timeout-minutes: 5