Skip to content

Add strong naming, public properties, and support for .NET 8 and .NET 9 #91

Add strong naming, public properties, and support for .NET 8 and .NET 9

Add strong naming, public properties, and support for .NET 8 and .NET 9 #91

name: Build and Unit Test Dstv reader
on:
push:
branches: [ develop, main ]
pull_request:
branches: [ develop, main ]
jobs:
build_test_dstv_net:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
9.0.x
- name: Restore dependencies
run: dotnet restore DSTV.Net.sln
- name: Build
run: dotnet build DSTV.Net.sln --no-restore
- name: Test
run: dotnet test DSTV.Net.sln --no-build --verbosity normal