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 ca8b189 commit 6d72b8bCopy full SHA for 6d72b8b
.github/workflows/dotnet-deployment.yml
@@ -0,0 +1,30 @@
1
+# This workflow will build a .NET project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+name: .NET
5
6
+on:
7
+ push:
8
+ branches: [ "main" ]
9
+ paths: src/Application/**
10
+ pull_request:
11
12
13
14
+jobs:
15
+ build:
16
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Setup .NET
22
+ uses: actions/setup-dotnet@v4
23
+ with:
24
+ dotnet-version: 8.0.x
25
+ - name: Restore dependencies
26
+ run: dotnet restore
27
+ - name: Build
28
+ run: dotnet build --no-restore
29
+ - name: Test
30
+ run: dotnet test --no-build --verbosity normal
0 commit comments