Skip to content

Commit c8bf946

Browse files
authored
Create main.yml
1 parent 9fe2d1b commit c8bf946

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
name: Executing tests
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: actions/setup-dotnet@v1
12+
with:
13+
dotnet-version: '3.1.100'
14+
- run: dotnet build -c Release
15+
- run: dotnet test -c Release

0 commit comments

Comments
 (0)