-
Notifications
You must be signed in to change notification settings - Fork 35
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
247261c
commit 4a0ea0e
Showing
5 changed files
with
8,166 additions
and
2 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 |
---|---|---|
|
@@ -15,3 +15,30 @@ jobs: | |
java-version: [email protected] | ||
- name: Test | ||
run: sbt +test | ||
|
||
dependency-check: | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v11 | ||
with: | ||
java-version: [email protected] | ||
- name: Assembly | ||
run: sbt "project secret-provider;set assembly / test := {}" assembly | ||
- name: Dependency Check | ||
uses: dependency-check/[email protected] | ||
env: | ||
# actions/setup-java@v1 changes JAVA_HOME so it needs to be reset to match the depcheck image | ||
JAVA_HOME: /opt/jdk | ||
with: | ||
project: secret-provider-deps | ||
path: secret-provider/target/libs/ | ||
format: 'HTML' | ||
- name: Upload Test results | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: secret-provider-depcheck-results | ||
path: ${{github.workspace}}/reports |
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
Oops, something went wrong.