Ignore pip _vendor directory completely. #1384
Workflow file for this run
This file contains hidden or 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: Check package diff tool | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| jobs: | |
| check_package_diff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python & Poetry Environment | |
| uses: exasol/python-toolbox/.github/actions/python-environment@v6 | |
| with: | |
| python-version: "3.10" | |
| poetry-version: '2.3.0' | |
| - name: Run generate_package_diffs_for_flavors | |
| run: | | |
| poetry run -- exaslct generate-package-diffs --output-package-diff-directory /tmp/output --current-working-copy-name test --compare-to-commit master |