Skip to content

Fixed issue with yearly seasonality being enabled without enough data… #63

Fixed issue with yearly seasonality being enabled without enough data…

Fixed issue with yearly seasonality being enabled without enough data… #63

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
# - ruby: 3.3
# os: ubuntu-22.04
- ruby: 3.2
os: ubuntu-22.04
- ruby: 3.1
os: ubuntu-20.04
- ruby: "3.0"
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.12
- run: pip install matplotlib pandas prophet
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake vendor:platform
- run: TEST_PYTHON=1 bundle exec rake test