Skip to content

Commit d0551df

Browse files
authored
Create dotnet.yml
1 parent fcc6c16 commit d0551df

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/dotnet.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: .NET
2+
3+
on:
4+
push:
5+
branches: [ setupbuild ]
6+
#pull_request:
7+
# branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: 5.0.x
20+
- name: Restore dependencies
21+
run: dotnet restore src\\envers.sln
22+
- name: Build
23+
run: dotnet build --no-restore src\\envers.sln
24+
- name: Test
25+
run: dotnet test --no-build src\\envers.sln

0 commit comments

Comments
 (0)