Skip to content

Put SPSA code in a separate file. #3735

Put SPSA code in a separate file.

Put SPSA code in a separate file. #3735

Workflow file for this run

name: CI server
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: "7.0"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv with cache
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Sync project
run: uv sync
- name: Run server tests
run: uv run python -m unittest discover -vb -s tests