From e5a74c09df3997cca4c1d9c515782e8ff37c8bf9 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 25 Jan 2023 21:33:01 +0100 Subject: [PATCH] ci: Improve jobs naming Make jobs name more user friendly. --- .github/workflows/build_ports.yml | 3 ++- .github/workflows/build_targets.yml | 3 ++- .github/workflows/newt_test_all.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_ports.yml b/.github/workflows/build_ports.yml index f125399c1..0d30d453f 100644 --- a/.github/workflows/build_ports.yml +++ b/.github/workflows/build_ports.yml @@ -17,12 +17,13 @@ # under the License. # -name: newt test all +name: Build check on: [push, pull_request] jobs: ports: + name: Build ports runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/build_targets.yml b/.github/workflows/build_targets.yml index 0040748a0..16ea8aac6 100644 --- a/.github/workflows/build_targets.yml +++ b/.github/workflows/build_targets.yml @@ -17,12 +17,13 @@ # under the License. # -name: build all targets +name: Build check on: [push, pull_request] jobs: targets: + name: Build all test targets strategy: fail-fast: false matrix: diff --git a/.github/workflows/newt_test_all.yml b/.github/workflows/newt_test_all.yml index 20ed79577..26048d9fd 100644 --- a/.github/workflows/newt_test_all.yml +++ b/.github/workflows/newt_test_all.yml @@ -17,12 +17,13 @@ # under the License. # -name: newt test all +name: Unit tests on: [push, pull_request] jobs: newt_test: + name: Run newt test all runs-on: ubuntu-latest steps: - uses: actions/checkout@v3