We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43cb8e4 commit fcffb22Copy full SHA for fcffb22
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,36 @@
1
+name: Build
2
+
3
+on:
4
+ pull_request: {}
5
+ push:
6
+ branches:
7
+ - '**' # matches every branch
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-22.04
12
+ steps:
13
+ - name: checkout
14
+ uses: actions/checkout@v3
15
16
+ - name: Setup dotnet
17
+ uses: actions/setup-dotnet@v3
18
+ with:
19
+ dotnet-version: '8.0'
20
21
+ - name: build
22
+ run: dotnet build
23
+ working-directory: .
24
25
+ - name: test
26
+ run: |
27
+ dotnet test
28
+ if [ $? -eq 0 ]; then
29
+ echo TESTS PASSED
30
+ else
31
+ echo TESTS FAILED
32
+ exit 1
33
+ fi
34
+ working-directory: ./ExampleDataApis.Tests
35
36
0 commit comments