Check Current Linters #196
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: Check Current Linters | |
| on: | |
| schedule: | |
| - cron: '17 17 * * 1' | |
| jobs: | |
| lint: | |
| name: Check Linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set Up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install Tools | |
| run: | | |
| pip install PyGithub pylint mypy cython-lint cpplint pip-tools | |
| pip-compile -o types.txt --extra=dev,types setup.py | |
| pip install -r types.txt | |
| rm types.txt | |
| - name: Run Analysis Tools | |
| run: | | |
| python .github/scripts/run_pylint_check.py --token ${{ secrets.GITHUB_TOKEN }} --repo ${{ github.repository }} |