Skip to content

Commit

Permalink
Make Action names filterable
Browse files Browse the repository at this point in the history
  • Loading branch information
foriequal0 committed Nov 11, 2019
1 parent 4eae097 commit cc9754e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
on: [push, pull_request]

name: Actions - build
name: build

jobs:
build:
name: Actions - build
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cargo-test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
on: [push, pull_request]

name: Actions - cargo
name: cargo-test

jobs:
clippy:
name: clippy
name: Actions - clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -17,7 +17,7 @@ jobs:
- run: cargo clippy --all --all-targets -- -D warnings

rustfmt:
name: rustfmt
name: Actions - rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -28,8 +28,8 @@ jobs:
- run: rustup component add rustfmt
- run: cargo fmt -- --check

build:
name: unit test
unit-test:
name: Actions - unit test
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/yarn-lint.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
on: [push, pull_request]

name: Actions - yarn
name: yarn-lint

jobs:
lint:
name: lint
name: Actions - lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit cc9754e

Please sign in to comment.