Skip to content

mypy

mypy #21

Workflow file for this run

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 .