This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Merge pull request #443 from ltworf/uuid #696
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: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install mypy types-dataclasses attrs | |
- name: mypy | |
run: make MINIMUM_PYTHON_VERSION=3.8 mypy |