We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6525e7d commit 41de2d4Copy full SHA for 41de2d4
1 file changed
.github/workflows/ci.yml
@@ -14,12 +14,14 @@ jobs:
14
name: Test (Java 8)
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
18
+
19
+ - name: Install devcontainer CLI
20
+ run: npm install -g @devcontainers/cli@0
21
22
- name: Run tests in dev container
- uses: devcontainers/ci@v0.3
23
env:
24
JAVA_VERSION: "8"
- with:
- push: never
25
- runCmd: ./mvnw -B test
+ run: |
26
+ devcontainer up --workspace-folder .
27
+ devcontainer exec --workspace-folder . bash -lc "./mvnw -B test"
0 commit comments