s3find 0.7.2

A command line utility to walk an Amazon S3 hierarchy. s3find is an analog of find for Amazon S3.
Documentation
name: Coverage

on:
  pull_request:
  push:
    branches:
      - master

jobs:
  coverage:
    runs-on: ubuntu-latest
    steps:
    - name: checkout
      uses: actions/checkout@v2
    - name: coverage
      run: |
        docker run \
          --security-opt seccomp=unconfined \
          -v "$(pwd):/volume" \
          xd009642/tarpaulin:latest \
          cargo tarpaulin -f -t 5 --out Xml -v -- --test-threads=1 || true
    - name: upload coverage to Codecov
      uses: codecov/codecov-action@v1
      with:
        token: ${{secrets.CODECOV_TOKEN}}