Skip to content

Change pipelines a bit to allow it properly run in master branch [no … #542

Change pipelines a bit to allow it properly run in master branch [no …

Change pipelines a bit to allow it properly run in master branch [no … #542

Workflow file for this run

name: .NET Core
on:
push:
branches-ignore:
- 'master'
pull_request:
branches:
- '**:**'
jobs:
build:
runs-on: ubuntu-latest
name: Build solution
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.*
- name: Build with dotnet
run: dotnet build --configuration Release