fix: remove the pv from the dead node #336
Workflow file for this run
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: Build check | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'go.mod' | |
- 'go.sum' | |
- 'cmd/**' | |
- 'pkg/**' | |
- 'Dockerfile' | |
jobs: | |
build: | |
name: Build | |
timeout-minutes: 15 | |
runs-on: ubuntu-24.04 | |
if: github.event.pull_request.draft == false | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up go | |
timeout-minutes: 5 | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Lint | |
uses: golangci/golangci-lint-action@v8 | |
with: | |
version: v2.1.6 | |
args: --timeout=5m --config=.golangci.yml | |
- name: Unit | |
run: make unit | |
- name: Build | |
timeout-minutes: 10 | |
run: make images | |
env: | |
PLATFORM: linux/amd64 | |
- name: Check node tools | |
timeout-minutes: 5 | |
run: make image-tools-check | |
env: | |
PLATFORM: linux/amd64 |