feat: add validation for vertices in GridFromPolygon (#242) #530
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: docs | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: astral-sh/setup-uv@v6 | |
| - name: Test build | |
| if: github.event_name == 'pull_request' | |
| run: uv run --group docs mkdocs build --strict | |
| - name: Deploy | |
| if: github.ref == 'refs/heads/main' | |
| run: uv run --group docs mkdocs gh-deploy --strict --force |