We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79c9052 commit 16c5126Copy full SHA for 16c5126
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,42 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ paths-ignore:
6
+ - '*.md'
7
+ - '*.txt'
8
+ - '.git*'
9
+ pull_request:
10
11
12
13
14
15
+jobs:
16
+ build:
17
+ runs-on: windows-latest
18
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
23
+ - name: Setup .NET
24
+ uses: actions/setup-dotnet@v4
25
+ with:
26
+ global-json-file: global.json
27
28
+ - name: Display .NET info
29
+ run: dotnet --info
30
31
+ - name: Pack
32
+ run: dotnet pack "-p:RepositoryCommit=${{ github.sha }}"
33
34
+ - name: Test
35
+ run: ./test.cmd
36
+ shell: cmd
37
38
+ - name: Upload NuGet packages
39
+ uses: actions/upload-artifact@v4
40
41
+ name: NuGet
42
+ path: dist/*.nupkg
appveyor.yml
0 commit comments