Skip to content

feat(webapi): add delete method #20

feat(webapi): add delete method

feat(webapi): add delete method #20

Workflow file for this run

name: WebAPI CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore src/webapi
- name: Build
run: dotnet build src/webapi --no-restore