safehttp 0.2.0

A slow (but simple, safe and strict) HTTP/1.1 parser
Documentation
name: "Build and test"

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-22.04

    steps:
      - uses: actions/checkout@v4
      - name: Build
        run: cargo build --verbose
      - name: rustfmt check
        run: cargo fmt --check
      - name: Run tests
        run: cargo test --verbose