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

21 lines
344 B
YAML
Raw Normal View History

2019-07-29 09:38:23 -07:00
on: [push]
name: ASP.NET Core
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- 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-01 16:35:41 -04:00
version: 2.2.108
2019-07-29 09:38:23 -07:00
- name: Build with dotnet
run: dotnet build --configuration Release