Skip to content

Add the ShellCheck workflow #105

Add the ShellCheck workflow

Add the ShellCheck workflow #105

Workflow file for this run

name: pylint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Analyze the code with pylint
run: |
pylint --fail-under=10.0 $(git ls-files '*.py')