Skip to content

Release 1.1.1 - Alpha 15 #1130

Release 1.1.1 - Alpha 15

Release 1.1.1 - Alpha 15 #1130

Workflow file for this run

# 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