Skip to content

Merge pull request #20 from ionite34/patch-1 #36

Merge pull request #20 from ionite34/patch-1

Merge pull request #20 from ionite34/patch-1 #36

Workflow file for this run

name: .NET Build
on:
push:
pull_request:
branches:
- '**:**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build with dotnet
run: dotnet build --configuration Release