Skip to content

Commit

Permalink
make pipeline job names slighly better
Browse files Browse the repository at this point in the history
  • Loading branch information
martinothamar committed Apr 3, 2024
1 parent ff2d6ec commit c3d78aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
lifetime: [Mediator_Lifetime_Singleton, Mediator_Lifetime_Scoped, Mediator_Lifetime_Transient]
publisher: [Mediator_Publisher_ForeachAwait, Mediator_Publisher_TaskWhenAll]
lifetime: [Singleton, Scoped, Transient]
publisher: [ForeachAwait, TaskWhenAll]

steps:
- uses: actions/checkout@v2
Expand All @@ -40,7 +40,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --no-restore -p:ExtraDefineConstants=\"${{ matrix.lifetime }}%3B${{ matrix.publisher }}\"
run: dotnet build --no-restore -p:ExtraDefineConstants=\"Mediator_Lifetime_${{ matrix.lifetime }}%3BMediator_Publisher_${{ matrix.publisher }}\"

- name: Test
run: dotnet test --no-restore --no-build --logger "console;verbosity=detailed"
Expand Down

0 comments on commit c3d78aa

Please sign in to comment.