We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e4806a commit 2126f89Copy full SHA for 2126f89
.github/workflows/pr.yml
@@ -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