You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/lth-docker.yml
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ on:
7
7
description: 'Liquibase Pro license key'
8
8
required: true
9
9
inputs:
10
-
versions:
11
-
description: 'Version(s) of Docker Database to test'
10
+
version:
11
+
description: 'Version of Docker Database to test'
12
12
required: false
13
13
14
14
jobs:
@@ -19,7 +19,6 @@ jobs:
19
19
strategy:
20
20
matrix:
21
21
liquibase-support-level: [Contributed, Foundational, Advanced] # Define the different test levels to run
22
-
versions: ["${{ inputs.versions }}"] # Define the different versions of Docker Database to test
23
22
fail-fast: false # Set fail-fast to false to run all test levels even if some of them fail
24
23
25
24
steps:
@@ -39,17 +38,17 @@ jobs:
39
38
- name: Build with Maven # Build the code with Maven (skip tests)
40
39
run: mvn -ntp -Dmaven.test.skip package
41
40
42
-
- name: Run ${{ matrix.liquibase-support-level }} Liquibase Test Harness ${{ matrix.versions }} # Run the Liquibase test harness at each test level
41
+
- name: Run ${{ matrix.liquibase-support-level }} Liquibase Test Harness ${{ inputs.version }} # Run the Liquibase test harness at each test level
43
42
continue-on-error: true # Continue to run the action even if the previous steps fail
44
43
env:
45
44
LIQUIBASE_PRO_LICENSE_KEY: ${{ secrets.PRO_LICENSE_KEY }} # Set the environment variable for the Liquibase Pro license key
46
-
run: mvn -ntp -DdbVersion=${{ matrix.versions }} -Dtest=${{ matrix.liquibase-support-level }}ExtensionHarnessSuite test # Run the Liquibase test harness at each test level
45
+
run: mvn -ntp -DdbVersion=${{ inputs.version }} -Dtest=${{ matrix.liquibase-support-level }}ExtensionHarnessSuite test # Run the Liquibase test harness at each test level
47
46
48
47
- name: Test Reporter # Generate a test report using the Test Reporter action
0 commit comments