Skip to content

build(deps): bump coverlet.collector from 6.0.2 to 6.0.3 in /sample-api/api #1130

build(deps): bump coverlet.collector from 6.0.2 to 6.0.3 in /sample-api/api

build(deps): bump coverlet.collector from 6.0.2 to 6.0.3 in /sample-api/api #1130

Workflow file for this run

name: Build and test ToDoItem sample API
on:
push:
branches: [ main ]
paths:
- 'sample-api/api/**'
pull_request:
branches: [ main ]
paths:
- 'sample-api/api/**'
jobs:
build:
defaults:
run:
working-directory: sample-api/api
runs-on: ubuntu-latest
needs: []
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal