Skip to content

Commit 2126f89

Browse files
authored
Create pr.yml
1 parent 3e4806a commit 2126f89

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pr.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Pull Request verifiyer
2+
3+
on:
4+
pull_request
5+
6+
jobs:
7+
build:
8+
name: Executing tests
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-dotnet@v1
13+
with:
14+
dotnet-version: '3.1.100'
15+
- run: dotnet build -c Release
16+
- run: dotnet test -c Release /nowarn:CS1591
17+
- run: dotnet pack src/ -c Release -o ${GITHUB_WORKSPACE} -p:version=1.0.0 /nowarn:CS1591

0 commit comments

Comments
 (0)