Skip to content

Separate processing for different event handlers. #119

Separate processing for different event handlers.

Separate processing for different event handlers. #119

Workflow file for this run

name: Build
on:
push:
pull_request:
branches: [ main ]
env:
DOTNET_VERSION: '6.0.x'
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore src
- name: Build
run: dotnet build src --configuration Release --no-restore