Skip to content

Refactoring Trialsynth with Base Module #25

Refactoring Trialsynth with Base Module

Refactoring Trialsynth with Base Module #25

Workflow file for this run

name: Test G.h subsystem
on:
push:
branches: [main]
paths:
- .github/workflows/stability_tests.yml
- src/*
pull_request:
paths:
- .github/workflows/stability_tests.yml
- src/*
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Cython dependencies
run: sudo apt update && sudo apt install -y gcc build-essential python3-dev curl
- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install python dependencies
run: poetry install
- name: Run tests
run: poetry run pytest -v