Skip to content

Merge pull request #3 from nareshkamboju/tac_config_sm8750-mtp #8

Merge pull request #3 from nareshkamboju/tac_config_sm8750-mtp

Merge pull request #3 from nareshkamboju/tac_config_sm8750-mtp #8

Workflow file for this run

name: Isort
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install isort==8.0.1 # pin isort version for consistent results
- name: Analysing the code with pylint
run: |
isort --check --diff --profile black $(git ls-files '*.py')