Skip to content

Commit 3cc231d

Browse files
committed
chore: setup Github workflow
1 parent 6db7003 commit 3cc231d

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/test.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
name: Run tests suite
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Setup .NET
18+
uses: actions/setup-dotnet@v1
19+
20+
- name: Tests
21+
run: ./build.sh test

global.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "8.0.100",
4+
"rollForward": "latestMinor"
5+
}
6+
}

0 commit comments

Comments
 (0)