We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cfd04e commit 8e203daCopy full SHA for 8e203da
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,17 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: actions/setup-dotnet@v4
13
+ - run: dotnet build --configuration Release
14
+ - uses: actions/upload-artifact@v4
15
+ with:
16
+ name: ${{ github.event.repository.name }}_${{ github.sha }}
17
+ path: bin
0 commit comments