Skip to content

Commit cd3ee02

Browse files
ci: Give workflow jobs more useful names. (#23)
The names show up in the UI, and having a bunch of jobs all named 'check' makes it impossible to distinguish which job is being referred to.
1 parent 7d61b77 commit cd3ee02

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/golang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '**/go.sum'
1010

1111
jobs:
12-
check:
12+
go-test:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3

.github/workflows/haskell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '**.cabal'
88

99
jobs:
10-
ci:
10+
haskell-typecheck:
1111
strategy:
1212
fail-fast: false
1313
runs-on: ubuntu-latest

.github/workflows/protobuf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- 'buf**'
1111

1212
jobs:
13-
check:
13+
protoc-gen-up-to-date:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3

.github/workflows/reprolang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'reprolang/**'
88

99
jobs:
10-
check:
10+
reprolang-parser-up-to-date:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- '**/Cargo.lock'
1010

1111
jobs:
12-
check:
12+
rust-typecheck:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3

.github/workflows/typescript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- '**/yarn.lock'
1111

1212
jobs:
13-
check:
13+
typescript-typecheck:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)