Skip to content

✨ support setting proxy between hub and managed cluster (#391) #1

✨ support setting proxy between hub and managed cluster (#391)

✨ support setting proxy between hub and managed cluster (#391) #1

Workflow file for this run

# Copyright Contributors to the Open Cluster Management project
name: Go
on:
push:
branches: [ main, release-* ]
pull_request:
branches: [ main, release-* ]
env:
GO_VERSION: '1.20'
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: verify
run: make verify
integration-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Integration Tests
run: make test-integration
e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: E2E Tests
run: make test-e2e