Automate RLS dataset cretion #779
Workflow file for this run
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
| name: Python Quality Check | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| pylint-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git clone the repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install packages | |
| run: | | |
| pip install cfn-flip pylint urllib3 boto3 bandit | |
| - name: Pylint all | |
| run: | | |
| python utils/pylint.py |