Skip to content

Commit 7304dc4

Browse files
committed
Merge branch 'master' of github.com:SeanoNET/FroniusSolarClient
2 parents 7e3c669 + f4185ee commit 7304dc4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@master
12+
- uses: actions/setup-dotnet@v1
13+
with:
14+
dotnet-version: '2.2' # SDK Version to use.
15+
- run: dotnet restore
16+
- run: dotnet build -c Release
17+
- run: dotnet test

0 commit comments

Comments
 (0)