best-path 0.1.1

Shortest/longest path algorithms, where edge weight accumulation via either a sum or a product
Documentation
name: test

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Build std
        run: cargo build --verbose
      - name: Build no_std
        run: cargo build --verbose --no-default-features
      - name: Build scale
        run: cargo build --verbose --no-default-features --features scale
      - name: Test std
        run: cargo test --verbose
      - name: Test no_std
        run: cargo test --verbose --no-default-features
      - name: Test scale
        run: cargo test --verbose --no-default-features --features scale