[chore] Build and publish application hosted in the repository for the Python instrumentation E2E test #4183
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: "Scorecard tests" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
CURRENT_KIND_VERSION: 0.20.0 | |
LEGACY_KIND_VERSION: 0.17.0 # for K8s versions latest kind doesn't support anymore | |
jobs: | |
scorecard-tests: | |
name: test on k8s | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
kube-version: | |
- "1.19" | |
- "1.28" | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "~1.21.1" | |
- name: Setup kind | |
env: | |
KIND_VERSION: ${{ matrix.kube_version >= 1.21 && env.KIND_VERSION || env.LEGACY_KIND_VERSION }} | |
run: go install sigs.k8s.io/kind@v${KIND_VERSION} | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: "install kuttl and kind" | |
run: ./hack/install-kuttl.sh | |
- name: "start kind" | |
env: | |
KUBE_VERSION: ${{ matrix.kube-version }} | |
run: kind create cluster --config kind-$KUBE_VERSION.yaml | |
- name: "wait until cluster is ready" | |
run: kubectl wait --timeout=5m --for=condition=available deployment/coredns -n kube-system | |
- name: "run scorecard test" | |
run: make scorecard-tests | |
scorecard-tests-check: | |
runs-on: ubuntu-22.04 | |
if: always() | |
needs: [scorecard-tests] | |
steps: | |
- name: Print result | |
run: echo ${{ needs.scorecard-tests.result }} | |
- name: Interpret result | |
run: | | |
if [[ success == ${{ needs.scorecard-tests.result }} ]] | |
then | |
echo "All matrix jobs passed!" | |
else | |
echo "One or more matrix jobs failed." | |
false | |
fi |