Skip to content

Bump coverlet.collector from 6.0.4 to 8.0.0 #50

Bump coverlet.collector from 6.0.4 to 8.0.0

Bump coverlet.collector from 6.0.4 to 8.0.0 #50

Workflow file for this run

name: Run Tests
permissions:
contents: read
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore DockGen.slnx
- name: Build
run: dotnet build DockGen.slnx --no-restore --configuration Release
- name: Run tests
run: dotnet test DockGen.slnx --no-build --configuration Release --logger trx