Skip to content

Check Current Linters #127

Check Current Linters

Check Current Linters #127

Workflow file for this run

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 }}