Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

fix/client-bugs

fix/client-bugs #310

Workflow file for this run

name: Backend Check-In
env:
NET_VERSION: '6.0.300'
GITHUB_API_KEY: ${{ github.token }}
on: [pull_request]
jobs:
check_in:
name: Build and Test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.NET_VERSION }}
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=coverage/lcov.info /p:CoverletOutputFormat=lcov