Skip to content

Added status base APIs #17

Added status base APIs

Added status base APIs #17

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
paths:
- 'src/**'
pull_request:
types: [opened, synchronize, reopened]
env:
DOTNET_VERSION: '8.0.x' # The .NET SDK version to use
jobs:
build-and-test:
name: build-and-test-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
working-directory: src
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: src