Skip to content

Align public repo with paper structure #15

Align public repo with paper structure

Align public repo with paper structure #15

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: Python tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: python -m pytest -q
- name: Compile Python sources
run: python -m compileall scripts src