distrs 0.2.3

PDF, CDF, and percent-point/quantile functions for the normal and Student’s t distributions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: build
on: [push, pull_request]
jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v6
      - run: cargo test
      # build for no_std to catch errors
      - run: cargo build --features no_std
      - run: cargo test --features no_std
      - run: cargo +nightly test --features nightly