stlrs 0.4.0

Seasonal-trend decomposition for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: build
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - run: cargo test
      # build for no_std to catch errors
      - run: cargo +nightly build --no-default-features
      - run: cargo +nightly test --no-default-features
      # build for no_std to catch errors
      - run: cargo +nightly build --no-default-features --features alloc
      - run: cargo +nightly test --no-default-features --features alloc