Update requirements.txt (#271) #1133
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 pylint | |
| on: push | |
| jobs: | |
| pylint: | |
| runs-on: ubuntu-latest | |
| name: pylint | |
| 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 pylint on source | |
| run: pylint --enable=W0611,R0902,R0913,R1732 --disable=C0103,C0411,R0401,R0801,R0901,R0903,R0914,R0915 src/python/autotransform | |
| - name: Check pylint on tests | |
| run: pylint --enable=W0611,R0902,R1732 --disable=C0103,C0114,C0115,C0116,C0301,C0411,R0401,R0801,R0901,R0903,R0913,R0914,R0915,W0201,W0212,W0613,W0621 src/python/autotransform tests |