Create dotnet.yml
This commit is contained in:
Родитель
a5e36968fb
Коммит
9b6fd5185b
|
@ -0,0 +1,25 @@
|
|||
name: .NET
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 5.x
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
- name: Build Peachpie.Blazor
|
||||
run: dotnet build src/Peachpie.Blazor --no-restore
|
||||
- name: Build Peachpie.Blazor.Sdk
|
||||
run: dotnet build src/Peachpie.Blazor.Sdk --no-restore
|
Загрузка…
Ссылка в новой задаче