Skip to content

Commit cc9754e

Browse files
committed
Make Action names filterable
1 parent 4eae097 commit cc9754e

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
on: [push, pull_request]
22

3-
name: Actions - build
3+
name: build
44

55
jobs:
66
build:
7+
name: Actions - build
78
runs-on: ${{ matrix.os }}
89
strategy:
910
matrix:

.github/workflows/cargo-test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
on: [push, pull_request]
22

3-
name: Actions - cargo
3+
name: cargo-test
44

55
jobs:
66
clippy:
7-
name: clippy
7+
name: Actions - clippy
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v1
@@ -17,7 +17,7 @@ jobs:
1717
- run: cargo clippy --all --all-targets -- -D warnings
1818

1919
rustfmt:
20-
name: rustfmt
20+
name: Actions - rustfmt
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v1
@@ -28,8 +28,8 @@ jobs:
2828
- run: rustup component add rustfmt
2929
- run: cargo fmt -- --check
3030

31-
build:
32-
name: unit test
31+
unit-test:
32+
name: Actions - unit test
3333
runs-on: ${{ matrix.os }}
3434
strategy:
3535
matrix:

.github/workflows/yarn-lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
on: [push, pull_request]
22

3-
name: Actions - yarn
3+
name: yarn-lint
44

55
jobs:
66
lint:
7-
name: lint
7+
name: Actions - lint
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)