Update requirements.txt (#271) #1135
This file contains hidden or 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
| # AutoTransform | |
| # Large scale, component based code modification library | |
| # | |
| # Licensed under the MIT License <http://opensource.org/licenses/MIT> | |
| # SPDX-License-Identifier: MIT | |
| # Copyright (c) 2022-present Nathan Rockenbach <http://github.com/nathro> | |
| name: Check mypy | |
| on: push | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-latest | |
| name: mypy | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: "3.10" | |
| - name: Update pip | |
| run: pip install --upgrade pip | |
| - name: Install Dependencies | |
| run: pip install -r requirements.txt | |
| - name: Check mypy | |
| run: mypy src/python/autotransform tests |