Auto publish #28
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: [ pull_request, workflow_dispatch ] | |
jobs: | |
mypy: | |
name: Mypy Validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare Environment | |
uses: ./.github/actions/prepare-environment | |
- name: Analysing the code with Mypy | |
run: | | |
make check-mypy |