Skip to content

Commit 8e203da

Browse files
committed
Add CI
1 parent 2cfd04e commit 8e203da

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)