We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2613b8a commit 7542991Copy full SHA for 7542991
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build-test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Setup .NET 10
18
+ uses: actions/setup-dotnet@v4
19
+ with:
20
+ dotnet-version: '10.0.x'
21
22
+ - name: Restore
23
+ run: dotnet restore SecureCodingExamples.sln
24
25
+ - name: Build
26
+ run: dotnet build SecureCodingExamples.sln --configuration Release --no-restore
27
28
+ - name: Test
29
+ run: dotnet test SecureCodingExamples.sln --configuration Release --no-build
0 commit comments