[Enhancement] support new upgrade hook contoller #250
This file contains hidden or 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: ACTION Run make test | |
on: | |
pull_request: | |
branches: ["main"] | |
paths: | |
- 'pkg/**' | |
jobs: | |
operator: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22 | |
- name: Call make ci-manifests | |
run: make ci-manifests | |
- name: Call make test | |
run: make test |