Skip to content

Commit

Permalink
CI: Run mypy on Python 3.8 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
mferrera committed Nov 29, 2023
1 parent e317fce commit d342388
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:

jobs:
mypy:
strategy:
matrix:
python-version: ["3.8", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -23,10 +26,10 @@ jobs:
- name: Setup xtgeo
uses: "./.github/actions/setup_xtgeo"
with:
python-version: 3.11
python-version: ${{ matrix.python-version }}

- name: List dependencies
run: pip freeze

- name: run mypy
- name: Run mypy
run: mypy .

0 comments on commit d342388

Please sign in to comment.