Defaulting to EAR attestation policy #24
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: "Integration tests" | |
on: | |
pull_request: | |
branches: | |
- main | |
# Skip CI when changes are made to *.md files | |
paths-ignore: | |
- '**.md' | |
env: | |
KUTTL: /usr/local/bin/kubectl-kuttl | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.0 | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo curl -Lo $KUTTL https://github.com/kudobuilder/kuttl/releases/download/v0.19.0/kubectl-kuttl_0.19.0_linux_x86_64 | |
sudo chmod +x $KUTTL | |
sudo curl -Lo kind https://github.com/kubernetes-sigs/kind/releases/download/v0.22.0/kind-linux-amd64 | |
sudo chmod +x kind | |
- name: "Run integration tests" | |
run: make test-e2e |