friendly naming in actions

faster-single-tables
Andrew Cassidy 3 years ago committed by GitHub
parent 1e94f9010e
commit 920f9a2d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,23 +13,20 @@ jobs:
# cross-platform coverage. # cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix # 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 }} runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}-${{ matrix.cc }}
strategy: strategy:
matrix: matrix:
include: include:
- os: macos-latest - os: macos-latest
name: "macOS Clang"
cc: "clang" cc: "clang"
cxx: "clang++" cxx: "clang++"
- os: ubuntu-latest - os: ubuntu-latest
name: "Ubuntu Clang"
cc: "clang-9" cc: "clang-9"
cxx: "clang++-9" cxx: "clang++-9"
- os: ubuntu-latest - os: ubuntu-latest
name: "Ubuntu GCC"
cc: "gcc-10" cc: "gcc-10"
cxx: "g++-10" cxx: "g++-10"
- os: windows-latest - os: windows-latest
name: "Windows MSVC"
cc: "cl" cc: "cl"
cxx: "cl" cxx: "cl"

Loading…
Cancel
Save