Skip to content

Commit

Permalink
Explicitly enable scan in github action workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Kurait <[email protected]>
  • Loading branch information
AndreKurait committed Feb 26, 2024
1 parent b359529 commit 7220d66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2eTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache-read-only: false

- name: Start Docker Solution
run: ./gradlew dockerSolution:ComposeUp -x test --info --stacktrace
run: ./gradlew dockerSolution:ComposeUp -x test --scan --info --stacktrace
working-directory: TrafficCapture
env:
OS_MIGRATIONS_GRADLE_SCAN_TOS_AGREE_AND_ENABLED: ''
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
gradle-home-cache-cleanup: true

- name: Run Gradle Build
run: ./gradlew build -x test --info --stacktrace
run: ./gradlew build -x test --scan --info --stacktrace
working-directory: TrafficCapture
env:
OS_MIGRATIONS_GRADLE_SCAN_TOS_AGREE_AND_ENABLED: ''

- name: Run Tests with Coverage
run: ./gradlew test jacocoTestReport --info --stacktrace
run: ./gradlew test jacocoTestReport --scan --info --stacktrace
working-directory: TrafficCapture
env:
OS_MIGRATIONS_GRADLE_SCAN_TOS_AGREE_AND_ENABLED: ''
Expand Down

0 comments on commit 7220d66

Please sign in to comment.