priority-queue 1.2.0

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

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

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

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - run: rustup target add $TARGET
    - name: Build
      run: cargo build --verbose
    - name: Build with serde
      run: cargo build --verbose --features serde
    - name: Build for no-std
      run: cargo build -v -p test-nostd --target=$TARGET