Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: .NET Core
name: CI

on: [push]
on: [push, pull_request]

jobs:
build:
Expand All @@ -22,13 +22,13 @@ jobs:
uses: AArnott/nbgv@v0.3

- name: Restore and Build
run: dotnet build --configuration Release
run: dotnet build --configuration Debug

- name: Test
run: dotnet test --no-build --configuration Release
run: dotnet test --no-build --configuration Debug

- name: Pack
run: dotnet pack --no-build --configuration Release -o ./packages
run: dotnet pack --no-build --configuration Debug -o ./packages

- name: Upload packages as artifact
uses: actions/upload-artifact@v1
Expand Down