We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0365c13 commit ccc4e8aCopy full SHA for ccc4e8a
.github/workflows/build.yml
@@ -0,0 +1,35 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - dev
8
+ pull_request:
9
10
11
12
+ workflow_dispatch:
13
14
+concurrency:
15
+ group: ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress: true
17
18
+jobs:
19
+ build:
20
+ runs-on: windows-latest
21
22
+ steps:
23
+ - name: Checkout code
24
+ uses: actions/checkout@v6
25
26
+ - name: Setup .NET
27
+ uses: actions/setup-dotnet@v5
28
+ with:
29
+ dotnet-version: '9.0.x'
30
31
+ - name: Restore dependencies
32
+ run: dotnet restore "Simple QR Code Maker.sln"
33
34
+ - name: Build solution
35
+ run: dotnet build "Simple QR Code Maker.sln" --configuration Release --no-restore
0 commit comments