Files
starter-workflows/ci/dotnet-core.yml
T
Edward Thomson 20613d6143 Merge pull request #320 from timheuer/patch-1
Updating .NET Core SDK version to LTS
2020-02-28 14:50:35 +00:00

22 lines
390 B
YAML

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Build with dotnet
run: dotnet build --configuration Release