Skip to content

List users and connections #55

List users and connections

List users and connections #55

Workflow file for this run

name: .NET Build
on:
push:
branches: ['main', 'develop']
pull_request:
branches: ['main', 'develop']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.x
- name: Restore dependencies
run: dotnet restore
working-directory: ./dotnet
- name: Build
run: dotnet build --no-restore --configuration Release
working-directory: ./dotnet