Skip to content

Merge branch 'main' of github.com:intsystems/implicit-reparameterizat… #77

Merge branch 'main' of github.com:intsystems/implicit-reparameterizat…

Merge branch 'main' of github.com:intsystems/implicit-reparameterizat… #77

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install isort flake8 black
- name: Run isort
run: isort --check-only ./src/irt
- name: Run flake8
run: flake8 ./src/irt
- name: Run black
run: black --line-length=120 --check --verbose --diff --color ./src/irt