forked from thomas-v2/S7CommPlusDriver
-
-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (38 loc) · 1.1 KB
/
Copy pathdotnetpull.yml
File metadata and controls
44 lines (38 loc) · 1.1 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: .NET Pull Request
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
8.0.x
9.0.x
- name: Restore dependencies
run: |
dotnet restore src/S7CommPlusDriver
dotnet restore src/DriverTest
dotnet restore src/S7CommPlusGUIBrowser
- name: Build
run: |
dotnet build src/S7CommPlusDriver
dotnet build src/DriverTest
dotnet build src/S7CommPlusGUIBrowser
- name: Test .NET 8
run: dotnet test src/S7CommPlusDriver.Tests/S7CommPlusDriver.Tests.csproj --configuration Release --framework net8.0
net48-tests:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Test .NET Framework 4.8
run: dotnet test src/S7CommPlusDriver.Tests/S7CommPlusDriver.Tests.csproj --configuration Release --framework net48