We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db7003 commit 3cc231dCopy full SHA for 3cc231d
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
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
@@ -0,0 +1,6 @@
+{
+ "sdk": {
+ "version": "8.0.100",
+ "rollForward": "latestMinor"
+ }
+}
0 commit comments