Skip to content

Commit e7ecdd0

Browse files
chore: Improves job names
1 parent 6ef65e3 commit e7ecdd0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
formatlint:
14-
name: Lint for correct formatting
14+
name: Format linting
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
@@ -24,7 +24,7 @@ jobs:
2424
run: docker run --rm -v ${{ github.workspace }}:/repo ghcr.io/nicklockwood/swiftformat:latest /repo --lint
2525

2626
macos:
27-
name: Build and test on macos-latest
27+
name: Test on macOS
2828
runs-on: macos-latest
2929
steps:
3030
- uses: maxim-lobanov/setup-xcode@v1
@@ -36,7 +36,7 @@ jobs:
3636

3737
# ubuntu-latest is ubuntu-22.04 currently. Swift versions older than 5.7 don't have builds for 22.04. https://www.swift.org/download/
3838
ubuntu-20_04:
39-
name: Build ${{ matrix.swift }} on ${{ matrix.os }}
39+
name: Test Swift ${{ matrix.swift }} on ${{ matrix.os }}
4040
runs-on: ${{ matrix.os }}
4141
strategy:
4242
matrix:
@@ -51,7 +51,7 @@ jobs:
5151
run: swift test --parallel
5252

5353
ubuntu-22_04:
54-
name: Build ${{ matrix.swift }} on ${{ matrix.os }}
54+
name: Test Swift ${{ matrix.swift }} on ${{ matrix.os }}
5555
runs-on: ${{ matrix.os }}
5656
strategy:
5757
matrix:

0 commit comments

Comments
 (0)