Skip to content

Include Pytorch installation instructions in the documentation (#188) #409

Include Pytorch installation instructions in the documentation (#188)

Include Pytorch installation instructions in the documentation (#188) #409

Workflow file for this run

name: Linting
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install deps
run: |
pip install sphinx-lint ruff==0.4.8
- name: ruff
run: |
ruff check src/elli tests
- name: ruff formatting
run: |
ruff format --check src/elli tests
- name: Run Sphinx Linting
run: |
sphinx-lint .