Skip to content

Commit 8440496

Browse files
committed
chore: Add comments to explain the purpose of the script
1 parent 4864389 commit 8440496

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/dependency_compatibility_test.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ on:
1111
jobs:
1212
dependency-compatibility-test:
1313
runs-on: ubuntu-latest
14-
1514
steps:
1615
- name: Checkout repository
1716
uses: actions/checkout@v4
@@ -21,5 +20,10 @@ jobs:
2120
java-version: '21'
2221
distribution: 'temurin'
2322
cache: maven
23+
# Run in the root module which should test for everything barring showcase
2424
- name: Perform Dependency Compatibility Testing
25-
run: ./.github/scripts/test_dependency_compatibility.sh dependencies.txt
25+
run: ./.github/scripts/test_dependency_compatibility.sh dependencies.txt
26+
# Run for the Showcase tests
27+
- name: Perform Dependency Compatibility Testing (Showcase)
28+
run: ../.github/scripts/test_dependency_compatibility.sh dependencies.txt
29+
working-directory: java-showcase

0 commit comments

Comments
 (0)