📖 Update OpenAPI spec w/ Assessment changes (#520) #228
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: Test Addons | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test-addons: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start minikube | |
uses: konveyor/tackle2-operator/.github/actions/start-minikube@main | |
- name: Build image in minikube | |
run: | | |
export SHELL=/bin/bash | |
eval $(minikube -p minikube docker-env) | |
make docker-build | |
- name: Install Tackle | |
uses: konveyor/tackle2-operator/.github/actions/install-tackle@main | |
with: | |
tackle-hub-image: tackle2-hub:latest | |
tackle-image-pull-policy: IfNotPresent | |
- name: Set host and namespace | |
run: | | |
echo "host=$(minikube ip)/hub" >> $GITHUB_ENV | |
echo "namespace=$(kubectl get tackles.tackle.konveyor.io --all-namespaces --no-headers | awk '{print $1}')" >> $GITHUB_ENV | |
- name: Test windup | |
uses: konveyor/tackle2-addon-windup/.github/actions/test-e2e-windup@main | |
with: | |
host: ${{ env.host }} | |
namespace: ${{ env.namespace }} |