Skip to content

Merge branch 'master' into etcd #23

Merge branch 'master' into etcd

Merge branch 'master' into etcd #23

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