timelag 0.5.0

Creating time-lagged time series data
Documentation
name: Rust

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - name: Format check
        run: cargo fmt --check
      - name: Check
        run: cargo clippy
      - name: Check
        run: cargo check
      - name: Build
        run: cargo build --verbose
      - name: Run tests (baseline)
        run: cargo test --tests --verbose --no-default-features
      - name: Run tests (all features)
        run: cargo test --tests --verbose --all-features
      - name: Run doctests
        run: cargo test --doc --verbose --all-features