Skip to content

chore(deps): bump Kuestenlogik.Bowire to 1.8.0 #53

chore(deps): bump Kuestenlogik.Bowire to 1.8.0

chore(deps): bump Kuestenlogik.Bowire to 1.8.0 #53

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
# XPlat Code Coverage drops one coverage.cobertura.xml per test
# project under artifacts/coverage/<guid>/.
run: >
dotnet test Bowire.Protocol.Udp.slnx -c Release --no-build -v normal
--collect:"XPlat Code Coverage"
--results-directory artifacts/coverage
- name: Upload coverage to Codecov
if: ${{ !github.event.pull_request.head.repo.fork }}
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: artifacts/coverage
files: '**/coverage.cobertura.xml'
flags: unittests
fail_ci_if_error: false