Skip to content

Commit

Permalink
chore: Improves job names
Browse files Browse the repository at this point in the history
  • Loading branch information
NeedleInAJayStack committed Nov 6, 2023
1 parent 79f057f commit 5bc1251
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: docker run --rm -v ${{ github.workspace }}:/repo ghcr.io/nicklockwood/swiftformat:latest /repo --lint

macos:
name: Build and test on macOS
name: Test on macOS
runs-on: macOS-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -36,7 +36,7 @@ jobs:

# Swift versions older than 5.7 don't have builds for ubuntu 22.04. https://www.swift.org/download/
ubuntu-20_04:
name: Build ${{ matrix.swift }} on ${{ matrix.os }}
name: Test Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -51,7 +51,7 @@ jobs:
run: swift test --parallel

ubuntu-22_04:
name: Build ${{ matrix.swift }} on ${{ matrix.os }}
name: Test Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -66,7 +66,7 @@ jobs:
run: swift test --parallel

ubuntu-latest:
name: Build latest on ubuntu
name: Test Latest Swift on Latest Ubuntu
runs-on: ubuntu-latest
steps:
- uses: swift-actions/setup-swift@v1
Expand Down

0 comments on commit 5bc1251

Please sign in to comment.