File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed
Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change 99 - master
1010
1111jobs :
12+ # Build and test on .NET Core
13+ dotnet-core-ci :
14+ runs-on : windows-2022
15+
16+ steps :
17+ - uses : actions/checkout@v2
18+
19+ - name : Set up .NET
20+ uses : actions/setup-dotnet@v1.7.2
21+ with :
22+ dotnet-version : ${{ matrix.dotnet-version }}
23+
24+ - name : Install dependencies
25+ run : nuget restore
26+
27+ - name : Build solution
28+ run : dotnet build
29+
30+ - name : Run tests
31+ run : dotnet test
32+
33+ # - name: Run linter
34+ # run: dotnet format --verify-no-changes
35+
1236 # Build and test on .NET Framework
1337 dotnet-framework-ci :
1438 runs-on : windows-2022
2246 - name : Set up VSTest
2347 uses : darenm/Setup-VSTest@v1
2448
49+ - name : Install dependencies
50+ run : nuget restore
51+
2552 - name : Build DuoApiTest solution
26- run : msbuild.exe test/DuoAPiTest .sln
53+ run : msbuild.exe duo_api_csharp .sln
2754
2855 - name : Run Tests dll
29- run : vstest.console.exe .\test\bin\Debug\test.dll
56+ run : vstest.console.exe .\test\bin\Debug\test.dll
You can’t perform that action at this time.
0 commit comments