We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ae788a commit 3f2cba0Copy full SHA for 3f2cba0
1 file changed
.github/workflows/main.yml
@@ -59,12 +59,9 @@ jobs:
59
60
# Label of the container job
61
container-job:
62
- # Containers must run in Linux based operating systems
63
runs-on: ubuntu-latest
64
- # Docker Hub image that `container-job` executes in
65
- container: maven:3.6.3-openjdk-8-slim
66
67
- # Service containers to run with `container-job`
+ # Service containers to run with `runner-job`
68
services:
69
# Label used to access the service container
70
redis:
@@ -76,6 +73,9 @@ jobs:
76
73
--health-interval 10s
77
74
--health-timeout 5s
78
75
--health-retries 5
+ ports:
+ # Maps port 6379 on service container to the host
+ - 6379:6379
79
steps:
80
- uses: actions/checkout@v2
81
- name: Set up JDK 14
0 commit comments