Skip to content

Commit

Permalink
ci: rename E2E workflow jobs
Browse files Browse the repository at this point in the history
Provide shorter names so that they are
readable on the GH interface.
  • Loading branch information
manusa committed Dec 14, 2022
1 parent 7e8e4a9 commit 5888bfa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run action and validate environment
name: Run action (E2E tests)

on:
push:
Expand All @@ -8,7 +8,7 @@ on:

jobs:
default-inputs:
name: Run with defaults
name: Defaults
runs-on: ubuntu-22.04
strategy:
matrix:
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Validate default driver
run: 'cat $MINIKUBE_HOME/.minikube/machines/minikube/config.json | jq ".DriverName" | grep none'
docker-driver:
name: Run with Docker driver
name: Docker driver
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Validate ssh access
run: minikube ssh --native-ssh=false "cat /etc/os-release"
extra-args:
name: Run with extra arguments
name: Extra arguments
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Validate enabled addon in arg
run: minikube addons list -o json | jq '.registry.Status' | grep enabled
ingress:
name: Run with ingress enabled
name: Ingress enabled
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -96,7 +96,7 @@ jobs:
- name: Validate enabled addon in arg
run: minikube addons list -o json | jq '.ingress.Status' | grep enabled
container-runtime:
name: Run with container runtime config in docker driver (Required by containerd)
name: Container runtime config in docker driver (Required by containerd)
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -122,7 +122,7 @@ jobs:
- name: Validate container runtime (${{ matrix.container_runtime }})
run: 'cat $MINIKUBE_HOME/.minikube/machines/minikube/config.json | jq ".Driver.NodeConfig.ContainerRuntime" | grep "${{ matrix.container_runtime }}"'
unsupported:
name: Run with unsupported K8s versions
name: Unsupported K8s versions
runs-on: ubuntu-20.04
strategy:
matrix:
Expand All @@ -145,7 +145,7 @@ jobs:
- name: Validate default driver
run: 'cat $MINIKUBE_HOME/.minikube/machines/minikube/config.json | jq ".DriverName" | grep none'
legacy-18:
name: Run for legacy/old versions (Ubuntu 18, Minikube 1.16, K8s 1.12)
name: Legacy/old versions (Ubuntu 18, Minikube 1.16, K8s 1.12)
runs-on: ubuntu-18.04
steps:
- name: Checkout
Expand Down

0 comments on commit 5888bfa

Please sign in to comment.