Skip to content

Merge pull request #16 from StrategyLogic/dev #9

Merge pull request #16 from StrategyLogic/dev

Merge pull request #16 from StrategyLogic/dev #9

Workflow file for this run

# Runs linting.
name: "🧹 Linting"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e .
pip install -e ".[dev]"
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')