Skip to content

fix: Build fix from Lib9c bump #7536

fix: Build fix from Lib9c bump

fix: Build fix from Lib9c bump #7536

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build-and-tests:
name: "build-and-tests (${{ matrix.configuration }})"
strategy:
matrix:
os:
- ubuntu-20.04
- windows-latest
configuration:
- Release
- DevEx
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build and test
run: |
dotnet test --configuration ${{ matrix.configuration }} --no-restore