Skip to content

mypy

mypy #66

Workflow file for this run

name: mypy
# NB: this will run even if docker-test-build fails
on:
workflow_run:
workflows:
- docker-test-build
types:
- completed
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download and run docker image
uses: ./.github/actions/download-docker-artifact
with:
repo-read-token: ${{ secrets.GH_PAT }}
- name: mypy
run: docker exec test python -m mypy . --exclude 'tests/' --exclude 'venv/'
- name: Save result
if: always()
uses: ./.github/actions/save-workflow-result
with:
result: ${{ job.status }}