Skip to content

chore(deps): bump actions/download-artifact from 4 to 5 in /.github/workflows #489

chore(deps): bump actions/download-artifact from 4 to 5 in /.github/workflows

chore(deps): bump actions/download-artifact from 4 to 5 in /.github/workflows #489

---
name: Static Analysis with Pylint
on: [push, pull_request]
jobs:
static-analysis-with-pylint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install pylint
- name: Set PYTHONPATH
run: echo "PYTHONPATH=$GITHUB_WORKSPACE/src" >> $GITHUB_ENV
- name: Run static analysis
run: |-
pylint src/ --exit-zero