Skip to content

Disable warning for Big Endian method names #21

Disable warning for Big Endian method names

Disable warning for Big Endian method names #21

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build with dotnet
run: dotnet build --configuration Release src/SerdesNet.csproj
- name: Test with dotnet
run: dotnet test ./SerdesNet.sln --configuration Release