Skip to content

[Janitor] Update Dependencies #15

[Janitor] Update Dependencies

[Janitor] Update Dependencies #15

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
build:
name: Build ${{ matrix.configuration }}
strategy:
matrix:
os: [ windows-latest ]
configuration: [ Debug, Release ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build BulkAnalysisRunner
run: dotnet build src --configuration ${{ matrix.configuration }}
- name: Test BulkAnalysisRunner
if: matrix.configuration == 'Debug'
run: dotnet test src --configuration ${{ matrix.configuration }}