ebnf 0.1.4

A successor bnf parsing library of bnf parsing library, for parsing Extended Backus–Naur form context-free grammars
Documentation
name: CI

on:
  push:
    branches:
      - main

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 --features "strict"
      - name: Run tests
        run: cargo test --verbose