Bump actions/checkout from 4.1.1 to 4.1.3 #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Minikube | |
on: | |
- push | |
- pull_request | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
name: build discover and deploy | |
steps: | |
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f | |
- name: Start minikube | |
uses: medyagh/setup-minikube@latest | |
# now you can run kubectl to see the pods in the cluster | |
- name: Try the cluster! | |
run: kubectl get pods -A |