Skip to content

[create-pull-request] automated change (#7096) #1767

[create-pull-request] automated change (#7096)

[create-pull-request] automated change (#7096) #1767

name: CI-Docker-Wormhole
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
- 'RELEASING.md'
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
- 'RELEASING.md'
concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.sha }}"
cancel-in-progress: true
permissions:
contents: read
jobs:
in-docker_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Build with Gradle
run: |
docker run -i --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
-v "$HOME:$HOME" \
-v "$PWD:$PWD" \
-w "$PWD" \
-e AUTO_APPLY_GIT_HOOKS=false \
openjdk:8-jdk-alpine \
./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'