Skip to content

- #73 - implement a few of the missing features #197

- #73 - implement a few of the missing features

- #73 - implement a few of the missing features #197

Workflow file for this run

name: CI-HS-SQLITE
on:
pull_request:
branches:
- master
- develop
push:
branches:
- master
- develop
jobs:
build:
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Unit Tests
run: dotnet test