Skip to content

fix links in docs (#711) #981

fix links in docs (#711)

fix links in docs (#711) #981

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install linters
run: pip install mypy types-setuptools flake8
- name: mypy
run: mypy statsforecast/
- name: flake8
run: flake8 --select=F statsforecast/