sanitize_html 0.10.0

Rule-based HTML Sanitization library
Documentation
name: Build

on: [push, pull_request]

jobs:
  build:
    runs-on:  ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os:
          - ubuntu-latest
          - macOS-latest
          - windows-latest
        rust:
          - stable

    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: ${{ matrix.rust }}
        override: true
    - name: Build
      run: |
        cargo build --all-targets --no-default-features --verbose
        cargo build --all-targets --verbose
    - name: Run tests
      run: cargo test --all-targets --verbose
      env:
        RUST_BACKTRACE: 1