Skip to content

Only check parent container bind mounts #29

Only check parent container bind mounts

Only check parent container bind mounts #29

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
docker-version: ["18.03", "18.09", "19.03", "20.10", "23", "24", latest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Show host Docker information
run: |
docker version
docker info
- name: Run tests with Docker ${{ matrix.docker-version }}
run: |
if [[ '${{ runner.debug }}' == 1 ]]; then
export DEBUG=true
export DOND_SHIM_DEBUG=true
fi
scripts/test.sh '${{ matrix.docker-version }}'
result:
needs: test
runs-on: ubuntu-latest
steps:
- run: |
echo "All tests passed!"