diligent-date-parser 0.1.5

Library for parsing datetime in unknown format
Documentation
name: CI

on: [push, pull_request]

jobs:
  build:
    runs-on:  ${{ matrix.os }}

    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macOS-latest, windows-latest]

    steps:
      - uses: actions/checkout@v3

      - uses: dtolnay/rust-toolchain@stable

      - name: build
        run: cargo build --verbose

      - name: test
        run: cargo test --no-fail-fast --verbose --all -- --nocapture
        env:
          RUST_BACKTRACE: 1