ENH: add key update_option for Well to roxar #14
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, pull_request] | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup xtgeo | |
uses: "./.github/actions/setup_xtgeo" | |
with: | |
python-version: 3.11 | |
- name: List dependencies | |
run: pip freeze | |
- name: run mypy | |
run: mypy . |