fix: RestClient for immutable rules #368
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 Test | |
on: pull_request | |
env: | |
GOPROXY: https://proxy.golang.org | |
YQ_VERSION: v4.27.3 | |
jobs: | |
test-harbor: | |
name: Test on Harbor | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
harbor: [v1, v2] | |
go: [1.20.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Add local harbor host to /etc/hosts | |
run: echo "127.0.0.1 core.harbor.domain" | sudo tee -a /etc/hosts | |
- name: Setup Kind | |
uses: engineerd/[email protected] | |
with: | |
version: v0.15.0 | |
skipClusterCreation: "true" | |
- name: Setup Helm | |
run: curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash | |
- name: Setup tools | |
run: sudo apt-get update && sudo apt-get install -y jq make | |
- name: Setup yq | |
run: wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64.tar.gz -O - | tar xz && sudo mv yq_linux_amd64 /usr/bin/yq | |
- name: Test | |
run: make integration-test-${{ matrix.harbor }}-ci |