Skip to content

docs: refresh MethodenAnalyser repo hygiene #3

docs: refresh MethodenAnalyser repo hygiene

docs: refresh MethodenAnalyser repo hygiene #3

Workflow file for this run

name: MethodenAnalyser smoke tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
permissions:
contents: read
jobs:
smoke:
runs-on: windows-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 files
run: python -m py_compile MethodenAnalyser3.py manage_translations.py translator.py
- name: Import analyzer module
run: python -c "import MethodenAnalyser3 as m; print(m.SIMILARITY_THRESHOLD)"