-
-
Notifications
You must be signed in to change notification settings - Fork 207
30 lines (26 loc) · 642 Bytes
/
build.yml
File metadata and controls
30 lines (26 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Fetch history
run: git fetch --prune --unshallow
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
5.0.x
6.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore DotNetSiemensPLCToolBoxLibrary.sln
- name: Build
run: dotnet build DotNetSiemensPLCToolBoxLibrary.sln
- name: Test
run: dotnet test DotNetSiemensPLCToolBoxLibrary.sln