Skip to content

Merge pull request #12 from NeuroDevCo/test #19

Merge pull request #12 from NeuroDevCo/test

Merge pull request #12 from NeuroDevCo/test #19

Workflow file for this run

name: Lint and test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Analysing the code with pylint
run: |
uv run ruff check
- name: Installing MBROLA
run: |
sudo /bin/bash bin/install.sh
- name: Testing with Pytest
run: |
uv run pytest --cov=src --cov-report=term-missing