From 920f9a2d2ec238058d92bdeb15065942a4106c48 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Sat, 6 Feb 2021 01:26:22 -0800 Subject: [PATCH] friendly naming in actions --- .github/workflows/cmake.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index fd47fa1..99c0538 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -13,23 +13,20 @@ jobs: # cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix runs-on: ${{ matrix.os }} + name: ${{ matrix.os }}-${{ matrix.cc }} strategy: matrix: include: - os: macos-latest - name: "macOS Clang" cc: "clang" cxx: "clang++" - os: ubuntu-latest - name: "Ubuntu Clang" cc: "clang-9" cxx: "clang++-9" - os: ubuntu-latest - name: "Ubuntu GCC" cc: "gcc-10" cxx: "g++-10" - os: windows-latest - name: "Windows MSVC" cc: "cl" cxx: "cl"