Skip to content

feat(docs): add styles #10

feat(docs): add styles

feat(docs): add styles #10

Workflow file for this run

name: lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Setting Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pdm
pdm install
- name: Analysing The Code With pylint
run: pdm run pylint $(git ls-files '*.py')