Skip to content

Commit

Permalink
Fixes tests in CI release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt committed Feb 8, 2022
1 parent 3240066 commit a627620
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,16 @@ jobs:
steps:
- name: Git Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}

- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
run: dotnet build --configuration Release
- name: Unit test
run: dotnet test Amazon.IonDotnet.Test
run: dotnet test --configuration Release --no-build --no-restore --verbosity normal --framework ${{ matrix.dotnet }}

release:
name: Release
Expand Down

0 comments on commit a627620

Please sign in to comment.