Skip to content

Add IsIndexable

Add IsIndexable #105

Workflow file for this run

name: .NET Core
on: [push]
jobs:
windows:
runs-on: ubuntu-latest
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 -c:Release
- name: Tests
run: dotnet test ./NetFabric.CSharp.UnitTests/NetFabric.CSharp.UnitTests.csproj -c:Release -p:CollectCoverage=true -p:CoverletOutputFormat=lcov -p:CoverletOutput=TestResults/
- name: Publish coverage report to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./NetFabric.CSharp.UnitTests/TestResults/coverage.net6.0.info