Skip to content

Commit

Permalink
add dotnet restore
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtule committed Oct 2, 2019
1 parent 004f048 commit 2e5ab5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
build:
name: Test ${{ matrix.os }} for dotnet ${{ matrix.dotnet }}
name: ${{ matrix.os }}/dotnet ${{ matrix.dotnet }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -16,6 +16,8 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore NuGet
run: dotnet restore
- name: Build with dotnet ${{ matrix.dotnet }}
run: dotnet build
- name: Test with xUnit
Expand Down

0 comments on commit 2e5ab5a

Please sign in to comment.