We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f447c76 commit a1fe471Copy full SHA for a1fe471
1 file changed
.github/workflows/ci.yml
@@ -25,6 +25,14 @@ jobs:
25
name: Run lint
26
run: |
27
make lint
28
+ -
29
+ name: Download OpenShift client
30
+ run: |
31
+ mkdir -p ~/oc
32
+ cd ~/oc
33
+ curl -L https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz -o oc.tar.gz
34
+ tar -xzf oc.tar.gz
35
+ echo "$HOME/oc" >> $GITHUB_PATH
36
-
37
name: Run Unit tests (cannot run openshift tests due to requiring Github runner with ubuntu 20.04)
38
run: make test-unit
0 commit comments