Docker tests #97
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: Check PR | |
on: | |
pull_request: | |
jobs: | |
check-pr: | |
name: Check PR | |
runs-on: ubuntu-latest | |
services: | |
docker: | |
image: docker:latest | |
options: --privileged # Required for Docker-in-Docker (dind) | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
ports: | |
- 2375:2375 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'sbt' | |
# - uses: sbt/setup-sbt@v1 | |
# - name: Install dependencies | |
# # testcontainers uses nc: | |
# # https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/wait/internal/InternalCommandPortListeningCheck.java#L33 | |
# run: sudo apt-get update && sudo apt-get install -y netcat | |
- name: Check PR | |
# run: sbt --batch "docker;consensus-client-it/test" | |
run: sbt --batch "docker;consensus-client-it/test" | |
- name: Archive logs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: | | |
consensus-client-it/target/test-logs |