Skip to content

feat: add client status (#18) #53

feat: add client status (#18)

feat: add client status (#18) #53

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Restore Packages
run: dotnet restore
- name: Build Solution
run: dotnet build -c Release --no-restore
- name: Run Tests
run: dotnet test -c Release --no-build --verbosity normal