updated config files for input dataset #15
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: Linting All on Pull Request | |
| on: | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| lintAllonPR: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Install Dependencies | |
| run: | | |
| pip install pylint | |
| - name: Fetch Main | |
| run: | | |
| git fetch origin main | |
| git diff --name-only origin/main..HEAD | |
| - name: Run pylint on all files | |
| run: | | |
| find . -name "*.py" -exec pylint {} + |