priority-queue 1.4.0

A Priority Queue implemented as a heap with a function to efficiently change the priority of an item.
Documentation
name: Test

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

env:
  CARGO_TERM_COLOR: always
  TARGET: thumbv6m-none-eabi

jobs:
  test:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Run tests
      run: cargo test --verbose
    - name: Run tests with serde
      run: cargo test --verbose --features serde