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 0011da8 commit ab48621Copy full SHA for ab48621
.github/workflows/build-and-test.yml
@@ -0,0 +1,32 @@
1
+name: Build and Test
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ build-and-test:
11
+ runs-on: ubuntu-latest
12
13
+ env:
14
+ TOKEN: ${{ secrets.TOKEN }}
15
+ FUNCTION_ENDPOINT: ${{ secrets.FUNCTION_ENDPOINT }}
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
20
+ - name: Setup .NET
21
+ uses: actions/setup-dotnet@v3
22
+ with:
23
+ dotnet-version: 8.x
24
25
+ - name: Restore dependencies
26
+ run: dotnet restore
27
28
+ - name: Build
29
+ run: dotnet build --configuration Release --no-restore
30
31
+ - name: Test
32
+ run: dotnet test --no-restore
.github/workflows/dotnet-core.yml
0 commit comments