ENH: Add measurement system to Cubes #2657
Workflow file for this run
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: mypy | |
| on: | |
| push: | |
| branches: [main, "version-*"] | |
| pull_request: | |
| branches: [main, "version-*"] | |
| release: | |
| types: | |
| - published | |
| schedule: | |
| # Run nightly to check that tests are working with latest dependencies | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| mypy: | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.14"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup xtgeo | |
| uses: "./.github/actions/setup_xtgeo" | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: List dependencies | |
| run: uv pip freeze | |
| - name: Run mypy | |
| run: uv run mypy . |