circulate 0.3.0

Lightweight PubSub framework that supports both sync and async
Documentation
name: Tests

on: [push]

jobs:
  test:
    runs-on: ubuntu-latest
    timeout-minutes: 30
    steps:
      - uses: actions/checkout@v2

      - name: Install Rust
        uses: hecrj/setup-rust-action@v1

      - name: Run clippy
        run: |
          cargo clippy -- -D warnings 

      - name: Run unit tests
        run: |
          cargo test -- --nocapture