polylog 2.6.0

Rust implementation of polylogarithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: coverage

on: ["push", "pull_request"]

jobs:
  coverage:
    name: Coverage
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
    - run: cargo install cargo-tarpaulin
    - run: cargo tarpaulin --out Lcov
    - uses: coverallsapp/github-action@v2