File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Standard Criteria
2+
3+ on :
4+ pull_request :
5+ branches : [ "master" ]
6+
7+ jobs :
8+ build :
9+ runs-on : windows-latest
10+ steps :
11+ # 1) Check out the source code so that the workflow can access it.
12+ - uses : actions/checkout@v2
13+ # 2) Set up the .NET CLI environment for the workflow to use.
14+ - name : Setup .NET
15+ uses : actions/setup-dotnet@v1
16+ with :
17+ dotnet-version : ' 7.0.x'
18+ # 3) Restore the dependencies and tools of a project or solution.
19+ - name : Install dependencies
20+ run : dotnet restore
21+ # 4) Build a project or solution and all of its dependencies.
22+ - name : Build
23+ run : dotnet build --configuration Release
24+ - name : Run NUnit tests
25+ run : dotnet test --configuration Release --no-build --verbosity normal --filter "Name=CoreTests"
You can’t perform that action at this time.
0 commit comments