twas 1.1.0

A text substitution application for using random look-up tables to generate text in a manner similar to the Mad Libs game.
Documentation
name:                           coverage

on:                             [push]
jobs:
  test:
    name:                       coverage
    runs-on:                    ubuntu-latest
    container:
      image:                    xd009642/tarpaulin:develop-nightly
      options:                  --security-opt seccomp=unconfined
    steps:
      - name:                   Checkout repository
        uses:                   actions/checkout@v3

      - name:                   Generate code coverage
        run: |
          echo "$(ls -lah .)" 1>&2 && cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml --manifest-path ./Cargo.toml

      - name:                   Upload to codecov.io
        uses:                   codecov/codecov-action@v2
        with:
          token:                ${{secrets.CODECOV_TOKEN}} # not required for public repos
          fail_ci_if_error:     true