Skip to content

docs: improve discoverability and localize readme #16

docs: improve discoverability and localize readme

docs: improve discoverability and localize readme #16

Workflow file for this run

name: MethodenAnalyser smoke tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
permissions:
contents: read
jobs:
smoke:
name: Smoke (${{ matrix.os }} / Python ${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.12"
- os: ubuntu-latest
python-version: "3.11"
- os: macos-latest
python-version: "3.11"
env:
PYTHONIOENCODING: utf-8
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 webapp/server.py
- name: Import analyzer module and Tk runtime
run: python -c "import tkinter as tk; import MethodenAnalyser3 as m; print(f'Tk {tk.TkVersion} / threshold {m.SIMILARITY_THRESHOLD}')"
- name: Run unittest smoke suite
run: python -m unittest discover -s tests -v