Skip to content

Commit

Permalink
Use meaningful names on GitHub actions
Browse files Browse the repository at this point in the history
This would make it clearer which actions are running on a PR.

Signed-off-by: Petr Horáček <[email protected]>
  • Loading branch information
phoracek authored and maiqueb committed Oct 26, 2022
1 parent 96ef0c3 commit 265a8dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Unit tests
name: Build, linters, and unit tests

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
branches: [ "main" ]

jobs:
build:
build-linters-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build
run: make build

- name: lint
- name: Linters
uses: golangci/golangci-lint-action@v3
with:
version: v1.47.3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: e2e tests - containerd
name: End-to-end tests (containerd)

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
branches: [ "main" ]

jobs:
build:
e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
Expand All @@ -28,10 +28,10 @@ jobs:
- name: Setup kind cluster
run: hack/e2e-kind-cluster-setup.sh

- name: Test - provisioning the examples
- name: Test provisioning examples
run: e2e/test-provisioning-examples.sh

- name: Test - execute golang based e2e tests
- name: Run e2e tests
env:
KUBECONFIG: /home/runner/.kube/config
run: make e2e/test
Expand Down

0 comments on commit 265a8dc

Please sign in to comment.