Python type check #5
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: Python type check | |
on: | |
push: | |
branches: [ "*" ] | |
tags: [ "*" ] | |
schedule: | |
- cron: '15 1 * * *' | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
container: monetdb/dev-builds:default | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Install MonetDBe in developer mode | |
run: MONETDB_BRANCH=default python3 -m pip install -e .[test] | |
- | |
name: Run mypy static code checks | |
run: mypy monetdbe tests |