Skip to content

Commit

Permalink
Create dotnet-core.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KawhiWei authored Jul 7, 2020
1 parent 11d030d commit c76ed6e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: .NET Core

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.101
- name: Install dependencies
run: dotnet restore src/Destiny.Core.Flow.API
- name: Build
run: dotnet build src/Destiny.Core.Flow.API --configuration Release --no-restore
# - name: Test
# run: dotnet test --no-restore --verbosity normal

0 comments on commit c76ed6e

Please sign in to comment.