We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 348c864 commit 7174f65Copy full SHA for 7174f65
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: 'ci pipeline'
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*'
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build-and-test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Setup dotnet
17
+ uses: actions/setup-dotnet@v4
18
+ with:
19
+ dotnet-version: 8.0.x
20
21
+ - name: Restore dependencies
22
+ run: dotnet restore
23
24
+ - name: Build
25
+ run: dotnet build --no-restore --configuration
26
27
+ - name: Tests
28
+ run: dotnet test --no-build
0 commit comments