-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b390fc5
commit 180e9d3
Showing
3 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,10 +84,9 @@ jobs: | |
working-directory: ${{ inputs.working-directory }} | ||
|
||
test: | ||
name: Test and asses code quality | ||
name: Test | ||
runs-on: ubuntu-22.04 | ||
needs: build | ||
|
||
steps: | ||
- name: Run unit tests | ||
uses: bakdata/ci-templates/actions/java-gradle-test@feat/split-test | ||
|
@@ -98,6 +97,12 @@ jobs: | |
java-distribution: ${{ inputs.java-distribution }} | ||
java-version: ${{ inputs.java-version }} | ||
working-directory: ${{ inputs.working-directory }} | ||
|
||
assess-code: | ||
name: Asses code quality | ||
runs-on: ubuntu-22.04 | ||
needs: test | ||
steps: | ||
- name: Assess code quality | ||
uses: bakdata/ci-templates/actions/java-gradle-assess-code-quality@feat/split-test | ||
# uses: bakdata/ci-templates/actions/[email protected] | ||
|
@@ -116,7 +121,7 @@ jobs: | |
build-jib: | ||
name: Build tarball image | ||
runs-on: ubuntu-22.04 | ||
needs: test | ||
needs: assess-code | ||
|
||
steps: | ||
- name: Build tarball image | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,9 +77,8 @@ jobs: | |
name: Test | ||
runs-on: ubuntu-22.04 | ||
needs: build | ||
|
||
steps: | ||
- name: Run unit tests | ||
- name: Run unit tests | ||
uses: bakdata/ci-templates/actions/java-gradle-test@feat/split-test | ||
# uses: bakdata/ci-templates/actions/[email protected] | ||
with: | ||
|
@@ -89,7 +88,7 @@ jobs: | |
java-version: ${{ inputs.java-version }} | ||
working-directory: ${{ inputs.working-directory }} | ||
|
||
asses-code: | ||
assess-code: | ||
name: Asses code quality | ||
runs-on: ubuntu-22.04 | ||
needs: test | ||
|
@@ -112,7 +111,7 @@ jobs: | |
publish: | ||
name: Publish | ||
runs-on: ubuntu-22.04 | ||
needs: asses-code | ||
needs: assess-code | ||
|
||
steps: | ||
- name: Publish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,10 +80,9 @@ jobs: | |
working-directory: ${{ inputs.working-directory }} | ||
|
||
test: | ||
name: Test and asses code quality | ||
name: Test | ||
runs-on: ubuntu-22.04 | ||
needs: build | ||
|
||
steps: | ||
- name: Run unit tests | ||
uses: bakdata/ci-templates/actions/java-gradle-test@feat/split-test | ||
|
@@ -94,6 +93,12 @@ jobs: | |
java-distribution: ${{ inputs.java-distribution }} | ||
java-version: ${{ inputs.java-version }} | ||
working-directory: ${{ inputs.working-directory }} | ||
|
||
assess-code: | ||
name: Asses code quality | ||
runs-on: ubuntu-22.04 | ||
needs: test | ||
steps: | ||
- name: Assess code quality | ||
uses: bakdata/ci-templates/actions/java-gradle-assess-code-quality@feat/split-test | ||
# uses: bakdata/ci-templates/actions/[email protected] | ||
|
@@ -112,7 +117,7 @@ jobs: | |
publish: | ||
name: Publish | ||
runs-on: ubuntu-22.04 | ||
needs: test | ||
needs: assess-code | ||
|
||
steps: | ||
- name: Publish | ||
|