tick-queue 0.0.3

Tick ordered queue
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: [push]

name: Rust Build

jobs:
  build_and_test:
    name: Build and run tests
    runs-on: ubuntu-latest
    items:
      - uses: actions/checkout@v4
      - run: rustup install stable
      - run: RUSTFLAGS="-D warnings" cargo clippy # -- -Wclippy::pedantic
      - run: RUSTFLAGS="-D warnings" cargo build --color=always --all-features
      - run: cargo test --color=always