diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-01 16:41:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-01 16:41:10 (GMT) |
commit | 9727e58e7d335ffd3a43602fbcab4a99e5dc7758 (patch) | |
tree | d35ad7d6248ea65c4ee7c7bcd07a1b86fc1eb8f4 /.github | |
parent | 2f8611013d1b61ea5656aacaf27909eaee6e528f (diff) | |
download | tcl-9727e58e7d335ffd3a43602fbcab4a99e5dc7758.zip tcl-9727e58e7d335ffd3a43602fbcab4a99e5dc7758.tar.gz tcl-9727e58e7d335ffd3a43602fbcab4a99e5dc7758.tar.bz2 |
Add options to workflow step titles
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/win-build.yml | 6 |
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) { |