This Github action will start Minikube to be able to Install/Run Eclipse Che
- tested on ubuntu 20.04
There are tons of github actions to setup minikube but as the idea was here to have a single action without any setup it was not the case.
It's because the idea is to have the minikube setup logic in the action and no configuration setting at all so every job use the same lines and are automatically updated when this action is updated.
# Install che
name: che
# Trigger the workflow on push or pull request
on: [push, pull_request]
jobs:
install:
runs-on: ubuntu-20.04
steps:
- name: Start minikube
id: run-minikube
uses: che-incubator/setup-minikube-action@next
Development version is available with @next
. At each commit in main branch, a new development release is pushed to next
branch.
"Che" is a trademark of the Eclipse Foundation.