Improvements to cs_data_processor and other nodejs processes. #1185
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: DNP3 Client .NET Core | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.100 | |
- name: Install dependencies | |
working-directory: src/dnp3/Dnp3Client | |
run: dotnet restore | |
- name: Build DNP3 Client | |
working-directory: src/dnp3/Dnp3Client | |
run: dotnet build Dnp3Client.csproj -r linux-x64 --configuration Release |