summaryrefslogtreecommitdiffstats
path: root/.github/workflows/win-build.yml
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-01 16:41:10 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-01 16:41:10 (GMT)
commit9727e58e7d335ffd3a43602fbcab4a99e5dc7758 (patch)
treed35ad7d6248ea65c4ee7c7bcd07a1b86fc1eb8f4 /.github/workflows/win-build.yml
parent2f8611013d1b61ea5656aacaf27909eaee6e528f (diff)
downloadtcl-9727e58e7d335ffd3a43602fbcab4a99e5dc7758.zip
tcl-9727e58e7d335ffd3a43602fbcab4a99e5dc7758.tar.gz
tcl-9727e58e7d335ffd3a43602fbcab4a99e5dc7758.tar.bz2
Add options to workflow step titles
Diffstat (limited to '.github/workflows/win-build.yml')
-rw-r--r--.github/workflows/win-build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml
index f59b2d7..637ca7e 100644
--- a/.github/workflows/win-build.yml
+++ b/.github/workflows/win-build.yml
@@ -20,19 +20,19 @@ jobs:
uses: actions/checkout@v2
- name: Init MSVC
uses: ilammy/msvc-dev-cmd@v1
- - name: Build
+ - name: Build ${{ matrix.cfgopt }}
run: |
&nmake -f makefile.vc ${{ matrix.cfgopt }} all
if ($lastexitcode -ne 0) {
throw "nmake exit code: $lastexitcode"
}
- - name: Build Test Harness
+ - name: Build Test Harness ${{ matrix.cfgopt }}
run: |
&nmake -f makefile.vc ${{ matrix.cfgopt }} tcltest
if ($lastexitcode -ne 0) {
throw "nmake exit code: $lastexitcode"
}
- - name: Run Tests
+ - name: Run Tests ${{ matrix.cfgopt }}
run: |
&nmake -f makefile.vc ${{ matrix.cfgopt }} test
if ($lastexitcode -ne 0) {