Skip to content

Commit

Permalink
Add stage to view .lic file
Browse files Browse the repository at this point in the history
  • Loading branch information
datalogics-saharay committed Apr 17, 2024
1 parent 7e71216 commit d6a7cde
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test-dotnet-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,14 @@ jobs:
- name: List files
run: |
ls ${{matrix.dir}}
- name: Test
working-directory: ${{matrix.dir}}
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
cat bin/Release/net6.0/runtimes/win-x64/native/apdfl.lic
elif [ "$RUNNER_OS" == "Linux" ]; then
cat bin/Release/net6.0/runtimes/linux-x64/native/apdfl.lic
else
cat bin/Release/net6.0/runtimes/osx-arm64/native/apdfl.lic
fi

0 comments on commit d6a7cde

Please sign in to comment.