We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d00822 commit fd22f72Copy full SHA for fd22f72
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ env:
13
MSBUILDDISABLENODEREUSE: '1' # Stops MSBuild from locking MSBuild nuget package
14
jobs:
15
build:
16
- name: Build
+ name: Build | All
17
runs-on: windows-latest
18
steps:
19
- uses: actions/checkout@v3
@@ -27,7 +27,7 @@ jobs:
27
run: dotnet test src\SourceGenerator.Foundations.sln
28
29
test:
30
- name: Test
+ name: Test | ${{ matrix.project.name }}
31
32
needs: build
33
strategy:
@@ -48,7 +48,7 @@ jobs:
48
run: dotnet test src\${{ matrix.project.path }}${{ matrix.project.name }}\${{ matrix.project.name }}.csproj
49
50
publish:
51
- name: Publish
+ name: Publish | ${{ matrix.project.name }}
52
53
needs:
54
- test
0 commit comments