Skip to content

Expose prepared statements #94

Expose prepared statements

Expose prepared statements #94

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-dependencies:
uses: ./.github/workflows/build-dependencies.yaml
test:
name: Test
runs-on: ${{ matrix.os }}
needs: build-dependencies
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-13]
steps:
- uses: actions/checkout@v3
- name: Download bindings
uses: actions/download-artifact@v3
with:
name: bindings
path: rust-bindings
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal