Skip to content

Compatibility

Compatibility #107

Workflow file for this run

name: Compatibility
on:
schedule:
- cron: '0 4 * * SUN'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.10', '3.11']
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: |
bash ci_scripts/install_deps.sh --extras dev emulator
- name: Run tests
env:
COBAYA_PACKAGES_PATH: ./cobaya_packages
run: |
uv run pytest -vv --durations=10