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 280b6dc commit 34134f0Copy full SHA for 34134f0
.github/workflows/pr-build.yml
@@ -0,0 +1,33 @@
1
+name: PR build workflow
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build:
10
+ name: build
11
+ runs-on: ${{ matrix.os }}
12
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ os: [windows-latest,ubuntu-latest]
17
+ version: [net452,netcoreapp2.0]
18
+ exclude:
19
+ - os: ubuntu-latest
20
+ version: net452
21
22
+ steps:
23
+ - name: Checkout repository
24
+ - uses: actions/checkout@v2
25
26
+ - name: Install dependencies
27
+ run: dotnet restore sdk/AWSXRayRecorder.sln --locked-mode
28
29
+ - name: Build solution
30
+ run: dotnet build sdk/AWSXRayRecorder.sln --configuration Release --no-restore
31
32
+ - name: Run tests
33
+ run: dotnet test sdk/test/UnitTests/bin/Release/${{matrix.version}}/AWSXRayRecorder.UnitTests.dll
appveyor.yml
0 commit comments