Skip to content

chore(deps): Bump actions/checkout from 5.0.0 to 6.0.2 #31

chore(deps): Bump actions/checkout from 5.0.0 to 6.0.2

chore(deps): Bump actions/checkout from 5.0.0 to 6.0.2 #31

Workflow file for this run

name: pytest
on: [pull_request, workflow_dispatch]
jobs:
test-optima:
name: Run python-optima tests
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
with:
enable-cache: true
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Test with python ${{ matrix.python-version }}
run: uv run --frozen pytest