Skip to content

Commit 83cca17

Browse files
committed
add github workflow CI
1 parent 1ff753e commit 83cca17

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: default
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
paths:
8+
- 'build.sh'
9+
- '**/*.cs'
10+
pull_request:
11+
branches:
12+
- "main"
13+
14+
jobs:
15+
build:
16+
name: Running tests on ubuntu-latest
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Setup .NET SDK
21+
uses: actions/setup-dotnet@v3
22+
with:
23+
dotnet-version: |
24+
8.x
25+
- name: build
26+
run: bash build.sh

0 commit comments

Comments
 (0)