Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneyJackson committed Nov 3, 2023
1 parent e1184e9 commit cc5c6ec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-with-max-python-max-java.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Test
name: Test with max python and max java

on:
pull_request:
Expand All @@ -20,9 +20,9 @@ jobs:
file: ./shell/Dockerfile
tags: test-image:latest
push: false
build-args:
- PYTHON3_VERSION=""
- OPENJDK_VERSION=""
build-args: |
PYTHON3_VERSION=""
OPENJDK_VERSION="~=11"
-
name: Test
uses: addnab/docker-run-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-with-max-python-min-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
file: ./shell/Dockerfile
tags: test-image:latest
push: false
build-args:
- PYTHON3_VERSION=""
- OPENJDK_VERSION="~=11"
build-args: |
PYTHON3_VERSION=""
OPENJDK_VERSION="~=11"
-
name: Test
uses: addnab/docker-run-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-with-min-python-max-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
file: ./shell/Dockerfile
tags: test-image:latest
push: false
build-args:
- PYTHON3_VERSION="~=3.0.0"
- OPENJDK_VERSION=""
build-args: |
PYTHON3_VERSION="~=3.0.0"
OPENJDK_VERSION=""
-
name: Test
uses: addnab/docker-run-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-with-min-python-min-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
file: ./shell/Dockerfile
tags: test-image:latest
push: false
build-args:
- PYTHON3_VERSION="~=3.0.0"
- OPENJDK_VERSION="~=11"
build-args: |
PYTHON3_VERSION="~=3.0.0"
OPENJDK_VERSION="~=11"
-
name: Test
uses: addnab/docker-run-action@v3
Expand Down

0 comments on commit cc5c6ec

Please sign in to comment.