Skip to content

Merge pull request #15 from dassjosh/develop #37

Merge pull request #15 from dassjosh/develop

Merge pull request #15 from dassjosh/develop #37

Workflow file for this run

name: build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build
run: dotnet build --configuration Release
working-directory: src