Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit a627620

Browse files
committed
Fixes tests in CI release workflow
1 parent 3240066 commit a627620

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@ jobs:
2020
steps:
2121
- name: Git Checkout
2222
uses: actions/checkout@v2
23+
with:
24+
submodules: recursive
2325
- name: Setup .NET
2426
uses: actions/setup-dotnet@v1
2527
with:
2628
dotnet-version: ${{ matrix.dotnet }}
27-
28-
- name: Install dependencies
29-
run: dotnet restore
3029
- name: Build
31-
run: dotnet build --configuration Release --no-restore
30+
run: dotnet build --configuration Release
3231
- name: Unit test
33-
run: dotnet test Amazon.IonDotnet.Test
32+
run: dotnet test --configuration Release --no-build --no-restore --verbosity normal --framework ${{ matrix.dotnet }}
3433

3534
release:
3635
name: Release

0 commit comments

Comments
 (0)