2019-10-23 13:45:35 +01:00
|
|
|
name: .NET Core
|
2019-07-29 09:38:23 -07:00
|
|
|
|
2019-08-06 16:37:30 -07:00
|
|
|
on: [push]
|
2019-07-29 09:38:23 -07:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
2019-08-06 16:37:30 -07:00
|
|
|
|
2019-07-29 09:38:23 -07:00
|
|
|
runs-on: ubuntu-latest
|
2019-10-16 12:40:14 -07:00
|
|
|
|
2019-07-29 09:38:23 -07:00
|
|
|
steps:
|
2019-12-24 14:22:22 -08:00
|
|
|
- uses: actions/checkout@v2
|
2019-07-29 09:38:23 -07:00
|
|
|
- name: Setup .NET Core
|
2019-08-02 10:30:20 -04:00
|
|
|
uses: actions/setup-dotnet@v1
|
2019-07-29 09:38:23 -07:00
|
|
|
with:
|
2019-08-14 14:05:28 -04:00
|
|
|
dotnet-version: 2.2.108
|
2019-07-29 09:38:23 -07:00
|
|
|
- name: Build with dotnet
|
|
|
|
|
run: dotnet build --configuration Release
|