Skip to content

initial release

initial release #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore Bowire.Protocol.Udp.slnx
- name: Build
run: dotnet build Bowire.Protocol.Udp.slnx -c Release --no-restore
- name: Test
run: dotnet test Bowire.Protocol.Udp.slnx -c Release --no-build -v normal