From 969e375087d018cf46b2823894927665a65f834f Mon Sep 17 00:00:00 2001 From: Mattt Date: Tue, 6 Oct 2020 10:50:45 -0700 Subject: [PATCH] Specify names for macos and linux jobs Use interpolated matrix values to denote Xcode and Swift versions --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f149ed6f..58050e81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: - "11.7" # Swift 5.2 - "12" # Swift 5.3 + name: "macOS (Xcode ${{ matrix.xcode }})" + steps: - name: Checkout uses: actions/checkout@v1 @@ -41,6 +43,8 @@ jobs: matrix: swift: ["5.3", "5.2"] + name: "Linux (Swift ${{ matrix.swift }})" + container: image: swift:${{ matrix.swift }}