network-tables 0.1.3

A implementation of WPI's Network Tables spec
Documentation
on:
  pull_request:
  push:
    branches:
      - main
    tags-ignore:
      - 'v*'

jobs:
  fmt:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Install latest rust
        uses: actions-rs/toolchain@v1
        with:
            profile: minimal
            toolchain: stable
            components: rustfmt
      - name: Check Formatting
        run: |
          cargo fmt --all --check

  test:
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3
      - name: Install latest rust
        uses: actions-rs/toolchain@v1
        with:
            toolchain: stable
            profile: minimal
      - uses: Swatinem/rust-cache@v2
      - name: Run Tests
        run: cargo test