Skip to content

[AP-175] Add extended RS232 commands to RS232 test app #13

[AP-175] Add extended RS232 commands to RS232 test app

[AP-175] Add extended RS232 commands to RS232 test app #13

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: [ develop, master ]
jobs:
build:
name: Build check on ${{ matrix.os }} - ${{ matrix.configuration }} (SDK ${{ matrix.sdk }})
strategy:
matrix:
os: [windows-latest]
sdk: [ 3.1.x ]
configuration: [Release, Debug]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.sdk }}
- name: Build Core
run: dotnet build --configuration ${{ matrix.configuration }} PTI.Rs232Validator/PTI.Rs232Validator.csproj
- name: Build Emulator
run: dotnet build --configuration ${{ matrix.configuration }} PTI.Rs232Validator.Emulator/PTI.Rs232Validator.Emulator.csproj