From cc9754e8146e4b5120e32bd8ba5e02fb848a07e2 Mon Sep 17 00:00:00 2001 From: SeongChan Lee Date: Mon, 28 Oct 2019 22:45:35 +0900 Subject: [PATCH] Make Action names filterable --- .github/workflows/build.yml | 3 ++- .github/workflows/cargo-test.yml | 10 +++++----- .github/workflows/yarn-lint.yml | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 519560df53..20ac63245a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,10 @@ on: [push, pull_request] -name: Actions - build +name: build jobs: build: + name: Actions - build runs-on: ${{ matrix.os }} strategy: matrix: diff --git a/.github/workflows/cargo-test.yml b/.github/workflows/cargo-test.yml index 7e62e73fba..9be1a6ee78 100644 --- a/.github/workflows/cargo-test.yml +++ b/.github/workflows/cargo-test.yml @@ -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 @@ -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 @@ -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: diff --git a/.github/workflows/yarn-lint.yml b/.github/workflows/yarn-lint.yml index 97dee7fcb4..f2673dced4 100644 --- a/.github/workflows/yarn-lint.yml +++ b/.github/workflows/yarn-lint.yml @@ -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