We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4864389 commit 8440496Copy full SHA for 8440496
.github/workflows/dependency_compatibility_test.yaml
@@ -11,7 +11,6 @@ on:
11
jobs:
12
dependency-compatibility-test:
13
runs-on: ubuntu-latest
14
-
15
steps:
16
- name: Checkout repository
17
uses: actions/checkout@v4
@@ -21,5 +20,10 @@ jobs:
21
20
java-version: '21'
22
distribution: 'temurin'
23
cache: maven
+ # Run in the root module which should test for everything barring showcase
24
- name: Perform Dependency Compatibility Testing
25
- run: ./.github/scripts/test_dependency_compatibility.sh dependencies.txt
+ 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