Skip to content

Fixed issue with args not passed to indexer #216

Fixed issue with args not passed to indexer

Fixed issue with args not passed to indexer #216

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
jobs:
buildAndUnitTest:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
env:
SOLUTION_PATH: 'Blockcore.Indexer.sln'
BUILD_CONFIGURATION: 'Release'
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0'
- name: Restore
run: dotnet restore ${{env.SOLUTION_PATH}}
- name: Build
run: dotnet build -c ${{env.BUILD_CONFIGURATION}} -v m ${{env.SOLUTION_PATH}}
- name: Unit Test
run: dotnet test -v=normal -c ${{env.BUILD_CONFIGURATION}}