mirror of
https://github.com/mvt-project/mvt.git
synced 2026-04-11 14:32:14 +02:00
* Modify docker image deployment behavior * Use build-push-action to create image provenance & sbom attestations * Upgrade github actions * Fix inconsistent capitialization in dockerfiles --------- Co-authored-by: scribblemaniac <scribblemaniac@users.noreply.github.com>
23 lines
432 B
YAML
23 lines
432 B
YAML
name: Mypy
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
mypy_py3:
|
|
name: Mypy check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: 3.9
|
|
cache: 'pip'
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install mypy
|
|
- name: mypy
|
|
run: |
|
|
make mypy
|