Skip to content

Bump mako from 1.3.10 to 1.3.12 #6

Bump mako from 1.3.10 to 1.3.12

Bump mako from 1.3.10 to 1.3.12 #6

Workflow file for this run

name: Tests
on:
push:
branches: [main, ci-test]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
python -m pip install -e ".[dev]"
- name: Run tests
env:
MPLBACKEND: Agg
run: pytest tests/ -v