mirror of https://github.com/icsharpcode/ILSpy.git
1 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||||||
|
name: Build Frontends |
||||||
|
|
||||||
|
on: |
||||||
|
push: |
||||||
|
branches: [ master ] |
||||||
|
pull_request: |
||||||
|
branches: [ master ] |
||||||
|
|
||||||
|
jobs: |
||||||
|
build: |
||||||
|
|
||||||
|
runs-on: ubuntu-latest |
||||||
|
|
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v2 |
||||||
|
with: |
||||||
|
fetch-depth: 0 |
||||||
|
- 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…
Reference in new issue