Skip to content

Commit 7d34757

Browse files
authored
Create standard-criteria-tests.yml
1 parent 03f03f8 commit 7d34757

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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"

0 commit comments

Comments
 (0)