Files
starter-workflows/ci/asp.net-core.yml
T

18 lines
329 B
YAML
Raw Normal View History

2019-08-06 16:37:30 -07:00
name: ASP.NET Core CI
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-08-06 16:37:30 -07:00
2019-07-29 09:38:23 -07:00
steps:
2019-08-14 10:43:09 -04:00
- uses: actions/checkout@v1
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