Skip to content

Support pytorch 2.2.0 #162

Support pytorch 2.2.0

Support pytorch 2.2.0 #162

Workflow file for this run

name: Linting
on: [push, pull_request]
permissions:
contents: read
jobs:
linting:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: pip install ruff==0.0.284 isort==5.12.0 black==23.1.0
- name: Run isort
run: isort falkon/ --line-length 120 --check --profile black
- name: Run ruff linter
run: ruff check falkon/
- name: Run black linter
run: black falkon/ --line-length 120 --check