Dockerignore: convert to whitelist #4
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: Test docker context | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
timeout-minutes: 3 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
submodules: recursive | |
# Some reasonable boundaries; these may change in future. Numbers outside | |
# these bounds indicate a misconfiguration, and should be investigated. | |
- run: ./test/check-docker-context.sh --min-size 30000 --max-size 50000 --min-count 500 --max-count 1000 |