Skip to content

Pre-Trained Models

Pre-Trained Models #7

name: Pre-Trained Models
on:
workflow_dispatch:
env:
RUN_PREGENERATED_TESTS: true
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install MQT Predictor
run: pip install .[test]
- name: Run Pre-Trained Models
run: pytest -v tests/test_pretrained_models.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}