byte-parser 0.2.2

Parse a str or a slice with a function style
Documentation

name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - name: Build
        run: cargo build
      - name: Run tests with all features
        run: cargo test --all-features
      - name: Run tests with default features
        run: cargo test