Skip to content

Merge branch 'staging' into copilot/add-hsts-header #1368

Merge branch 'staging' into copilot/add-hsts-header

Merge branch 'staging' into copilot/add-hsts-header #1368

Workflow file for this run

name: Pylint
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies
run: |
pipenv sync --dev
- name: Run pylint
run: |
pipenv run pylint $(git ls-files '*.py')