Skip to content

updates for latest api version #98

updates for latest api version

updates for latest api version #98

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "master" ]
workflow_dispatch: # manual trigger
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal