Skip to content

Commit e894502

Browse files
authored
Create testcontainer-cloud.yml
1 parent 50b8d7d commit e894502

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI - Maven + Testcontainers
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Set up JDK 21
14+
uses: actions/setup-java@v4
15+
with:
16+
distribution: temurin
17+
java-version: '21'
18+
cache: 'maven'
19+
20+
- name: Confirm Docker socket (debug)
21+
run: ls -la /var/run/docker.sock || true
22+
23+
- name: Run tests
24+
run: mvn -B -V test

0 commit comments

Comments
 (0)