Browse Source

Add GH Action for building Frontends.sln

pull/2210/head
Christoph Wille 5 years ago committed by GitHub
parent
commit
f5d54ab24a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      .github/workflows/build-frontends.yml

24
.github/workflows/build-frontends.yml

@ -0,0 +1,24 @@ @@ -0,0 +1,24 @@
name: Build Frontends
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.x
- name: Install dependencies
run: dotnet restore Frontends.sln
- name: Build
run: dotnet build Frontends.sln --configuration Debug --no-restore
Loading…
Cancel
Save