kbnf-syntax 0.5.3

An internal syntax crate for kbnf crate
Documentation
name: Pull Request CI

on: [pull_request]

jobs:
  build_test:
    runs-on: ubuntu-latest
    name: Build and Test
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          components: rustfmt
      - name: Format check
        run: cargo fmt --check
      - name: Check build (Strict)
        run: cargo build --verbose --release
      - name: Run tests
        run: cargo test --verbose