style(all): fixing pipelines #4742
Workflow file for this run
This file contains 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: Pylint | |
# ---------------------------------------# | |
# ---------------------------------------# | |
# --- PYLINTER - Github Actions -----# | |
# ---------------------------------------# | |
# ---------------------------------------# | |
# Pylint for github actions. Runs seperate to superlinter | |
# Documentation and source: | |
# https://github.com/cclauss/GitHub-Action-for-pylint | |
on: | |
pull_request: | |
branches: [dev, main, 331-staging] | |
jobs: | |
build: | |
name: Pylint | |
# Works on most linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint | |
- name: Analysing the code with pylint | |
run: | | |
pylint $(git ls-files '*.py') | |
env: | |
# may be worth changing this to master / main in future | |
DEFAULT_BRANCH: dev | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# For pylint's settings | |
PYTHON_PYLINT_CONFIG_FILE: .pylintrc |