Remove flatdata-go: It has been in Beta for several years without any… #164
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
| name: flatdata-py | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLORS: always | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Dependencies | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Run tests | |
| run: | | |
| cd flatdata-py | |
| uv venv | |
| uv pip install ../flatdata-generator | |
| uv pip install ".[inspector]" pytest mypy | |
| .venv/bin/pytest -v | |
| .venv/bin/flatdata-inspector --help | |
| - name: Type check | |
| run: | | |
| cd flatdata-py | |
| .venv/bin/mypy flatdata/ | |