updated Ports ref version #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Develop Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ develop ] | |
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 | |
- 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 |