docs: move multilingual README files into doc/; slim root README #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CI: install deps, compile check, smoke tests (push & PR to main) | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Byte-compile package | |
| run: python -m compileall -q fns_cli | |
| - name: CLI --help | |
| env: | |
| PYTHONPATH: ${{ github.workspace }} | |
| run: python -m fns_cli.main --help | |
| - name: Unit tests (unittest) | |
| env: | |
| PYTHONPATH: ${{ github.workspace }} | |
| run: python -m unittest discover -s tests -v |