Skip to content

Commit

Permalink
Merge pull request #18 from JadynWong/JadynWong-patch-1
Browse files Browse the repository at this point in the history
Github action
  • Loading branch information
JadynWong authored Feb 2, 2020
2 parents a0154cf + 7a8b062 commit 77fda1a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: .NET Core

on: [push]

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: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test --configuration Release

0 comments on commit 77fda1a

Please sign in to comment.