Update to v0.0.7 #101
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: Check Build (Windows) | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: | |
| - main | |
| - "staging-*" | |
| - "*" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: "pyproject.toml" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "0.6.3" | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: | | |
| uv sync --all-extras --dev | |
| - name: Lint | |
| run: | | |
| uv run mypy tests/ dynestyx/ | |
| uv run ruff check tests/ dynestyx/ | |
| uv run ruff format --diff tests/ dynestyx/ | |
| - name: Check Import | |
| run: uv run python -c "import dynestyx; print(dynestyx.__version__)" |