[WIP] Analyze Coolstore app with dependencies, Quarkus branch #510
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: Test TIER2 | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- '**.md' | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test-tier2: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: start-minikube | |
uses: konveyor/tackle2-operator/.github/actions/start-minikube@main | |
with: | |
memory: 6500M | |
- name: install-tackle | |
uses: konveyor/tackle2-operator/.github/actions/install-tackle@main | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.19' | |
- name: Install dependencies | |
run: | | |
go install github.com/onsi/ginkgo/v2/ginkgo | |
- run: HUB_BASE_URL="http://$(minikube ip)/hub" DEBUG=1 make test-tier2 |