mypy #8
This file contains 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 * * *" | |
jobs: | |
mypy: | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup xtgeo | |
uses: "./.github/actions/setup_xtgeo" | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: List dependencies | |
run: pip freeze | |
- name: Run mypy | |
run: mypy . |