Skip to content

Commit 8bbf3b2

Browse files
committed
add basic github action
1 parent 0ffa4fb commit 8bbf3b2

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Setup .NET 8
13+
uses: actions/setup-dotnet@v4
14+
with:
15+
dotnet-version: 8.0.x
16+
17+
- name: Build
18+
run: dotnet build src

0 commit comments

Comments
 (0)