Skip to content

chore: refresh NoteSpaceLLM hygiene #2

chore: refresh NoteSpaceLLM hygiene

chore: refresh NoteSpaceLLM hygiene #2

Workflow file for this run

name: NoteSpaceLLM smoke tests
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
permissions:
contents: read
jobs:
compile:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Compile Python sources
run: python -m compileall -q main.py manage_translations.py translator.py src
- name: Run unit tests
run: python -m unittest discover -s tests -v