We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27d4c1c commit c61aabdCopy full SHA for c61aabd
2 files changed
.github/workflows/foss-compliance-scan.yml
.github/workflows/foss-scan.yml
@@ -0,0 +1,26 @@
1
+name: OSS Review Toolkit - FOSS scan
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ ort:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Use HTTPS instead of SSH for Git cloning
11
+ run: git config --global url.https://github.com/.insteadOf ssh://git@github.com/
12
+ - name: Build project
13
+ uses: ZEISS-PiWeb/github-actions/.github/workflows/build-and-pack.yml@main
14
+ with:
15
+ do_pack: false
16
+ - name: Run GitHub Action for ORT
17
+ uses: oss-review-toolkit/ort-ci-github-action@v1
18
19
+ allow-dynamic-versions: 'true'
20
+ ort-cli-args: '-P ort.analyzer.enabledPackageManagers=Nuget'
21
+ run: >
22
+ analyzer,
23
+ scanner,
24
+ evaluator,
25
+ reporter,
26
+ upload-results
0 commit comments