Skip to content

Commit

Permalink
chore: Minor Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed Dec 1, 2023
1 parent d88702e commit c5967db
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: "Run Databroker in detached mode"
- name: "Run Docker Container of Databroker in detached mode"
run: docker run --pull=always --rm --publish 55556:55556/tcp --detach --name databroker ghcr.io/eclipse/kuksa.val/databroker:master --port 55556 --insecure

- uses: actions/setup-java@v3
Expand All @@ -25,14 +25,14 @@ jobs:
- name: Run 'assemble' with Gradle Wrapper
run: ./gradlew assemble

- name: Run 'check' with Gradle Wrapper
- name: Run 'lint' with Gradle Wrapper
run: ./gradlew ktlintCheck detekt

- name: Upload Lint Reports
- name: Upload Detekt Reports
uses: actions/upload-artifact@v3
with:
name: lint-reports
path: ${{ github.workspace }}/**/reports/detekt
name: detekt-reports
path: ${{ github.workspace }}/build/reports/detekt
if-no-files-found: error
retention-days: 14

Expand All @@ -43,10 +43,10 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: test-reports
path: ${{ github.workspace }}/**/reports/tests/testDebugUnitTest/
path: ${{ github.workspace }}/**/reports/tests/*/
if-no-files-found: error
retention-days: 14

- name: "Stop Databroker"
- name: "Stop Docker Container of Databroker"
if: always()
run: docker stop databroker

0 comments on commit c5967db

Please sign in to comment.