Skip to content

Setup hardcoded frontend assignment layout #37

Setup hardcoded frontend assignment layout

Setup hardcoded frontend assignment layout #37

Workflow file for this run

name: pylint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11.5
uses: actions/setup-python@v3
with:
python-version: 3.11.5
- 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')