Skip to content

Commit bf1a24d

Browse files
Add stage to view .lic file
1 parent 7e71216 commit bf1a24d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/test-dotnet-samples.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,14 @@ jobs:
194194
- name: List files
195195
run: |
196196
ls ${{matrix.dir}}
197+
198+
- name: Test
199+
working-directory: ${{matrix.dir}}
200+
run: |
201+
if [ "$RUNNER_OS" == "Windows" ]; then
202+
cat bin/Release/net6.0/runtimes/win-x64/native/apdfl.lic
203+
elif [ "$RUNNER_OS" == "Linux" ]; then
204+
cat bin/Release/net6.0/runtimes/linux-x64/native/APDFL.lic
205+
else
206+
cat bin/Release/net6.0/runtimes/osx-arm64/native/apdfl.lic
207+
fi

0 commit comments

Comments
 (0)