-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (41 loc) · 1.14 KB
/
develop-ci.yml
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
45
46
47
48
49
50
51
52
name: Develop Build
on:
workflow_dispatch:
pull_request:
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Meadow.Units
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Units
path: Meadow.Units
ref: develop
- name: Checkout Meadow.Logging
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Logging
path: Meadow.Logging
ref: develop
- name: Checkout Meadow.Contracts
uses: actions/checkout@v3
with:
repository: WildernessLabs/Meadow.Contracts
path: Meadow.Contracts
ref: develop
- name: Checkout Meadow.Modbus
uses: actions/checkout@v3
with:
path: Meadow.Modbus
ref: develop
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Build Meadow.Modbus
run: dotnet build -c Release Meadow.Modbus/src/Meadow.Modbus.sln
# - name: Unit Tests
# run: dotnet test -c Release Meadow.Modbus/src/Meadow.Modbus.sln --no-restore --verbosity normal