Skip to content

Add support for StatsForecastAutoARIMA and StatsForecastAutoETS #225

Add support for StatsForecastAutoARIMA and StatsForecastAutoETS

Add support for StatsForecastAutoARIMA and StatsForecastAutoETS #225

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: python -m pip install flake8
- name: flake8
uses: liskin/gh-problem-matcher-wrap@v2
with:
linters: flake8
run: flake8 tot scripts
isort:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: python -m pip install isort
- name: isort
uses: liskin/gh-problem-matcher-wrap@v2
with:
linters: isort
run: isort --check --diff tot tests scripts
black:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: black
uses: psf/black@stable
with:
jupyter: true
# pyright:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: "3.10"
# cache: "pip"
# cache-dependency-path: "**/requirements/*.txt"
# - name: Setup Requirements
# run: pip install -U -r requirements/base.txt -r requirements/docs.txt
# - name: pyright
# uses: jakebailey/pyright-action@v1