resize_with_crop_or_pad gives better overall results than central crop to resize (which squeezes) #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Vision CI/CD Pull Request | |
on: | |
pull_request: | |
jobs: | |
build-and-test: | |
uses: ./.github/workflows/CI-build-test.yml | |
notify-slack: | |
name: Notify Slack | |
needs: build-and-test | |
if: ${{ success() || failure() }} | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: iRoachie/[email protected] | |
if: env.SLACK_WEBHOOK_URL != null | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BUILDS_WEBHOOK_URL }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |