NetLicensing C# Client - Dependency Test #10438
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
name: NetLicensing C# Client - Dependency Test | |
on: | |
schedule: | |
- cron: '*/59 * * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Init application / add dependency / run | |
run: | | |
dotnet new console -o netlicensing-dependency-test | |
cd netlicensing-dependency-test | |
dotnet add package NetLicensingClient-csharp | |
dotnet run |