Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

echo "Building test project for cross-platform targets..."
for fw in netcoreapp3.1 net50 net6.0 net7.0 net8.0 net9.0 net10.0; do
dotnet build tests/Wolfgang.Etl.Abstractions.Tests/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \
dotnet build tests/Wolfgang.Etl.Abstractions.Tests.Unit/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \
--no-restore \
--configuration Release \
--framework "$fw" || true
Expand All @@ -70,7 +70,7 @@ jobs:
if: runner.os != 'Windows'
shell: bash
run: |
dotnet test tests/Wolfgang.Etl.Abstractions.Tests/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \
dotnet test tests/Wolfgang.Etl.Abstractions.Tests.Unit/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \
--configuration Release \
--framework net8.0 \
--no-build \
Expand All @@ -82,7 +82,7 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
run: |
dotnet test tests/Wolfgang.Etl.Abstractions.Tests/Wolfgang.Etl.Abstractions.Tests.Unit.csproj `
dotnet test tests/Wolfgang.Etl.Abstractions.Tests.Unit/Wolfgang.Etl.Abstractions.Tests.Unit.csproj `
--configuration Release `
--no-build `
--logger "trx" `
Expand Down