File tree Expand file tree Collapse file tree 2 files changed +38
-117
lines changed
Expand file tree Collapse file tree 2 files changed +38
-117
lines changed Original file line number Diff line number Diff line change 1+ name : .NET Test 🚀
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : windows-latest
8+
9+ steps :
10+ - uses : actions/checkout@v4
11+ - uses : actions/setup-dotnet@v4
12+ with :
13+ dotnet-version : ' 9.0.x'
14+ cache : true
15+
16+ - name : Restore Dependencies
17+ run : dotnet restore
18+
19+ - name : Before Build
20+ shell : pwsh
21+ run : ./before_build.ps1
22+
23+ - name : Build
24+ run : dotnet build --configuration Release --no-restore
25+
26+ - name : Unit Tests
27+ run : |
28+ dotnet test "./CloudinaryDotNet.Tests/CloudinaryDotNet.Tests.csproj" \
29+ --configuration Release \
30+ --no-build \
31+ --logger:"trx"
32+
33+ - name : Integration Tests
34+ run : |
35+ dotnet test "./CloudinaryDotNet.IntegrationTests/CloudinaryDotNet.IntegrationTests.csproj" \
36+ --configuration Release \
37+ --no-build \
38+ --logger:"trx"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments