Skip to content

skip the jobs that have no tasks during the close session step in gang plugin #6625

skip the jobs that have no tasks during the close session step in gang plugin

skip the jobs that have no tasks during the close session step in gang plugin #6625

Workflow file for this run

name: Code Verify
on:
push:
branches:
- master
tags:
pull_request:
jobs:
verify:
runs-on: ubuntu-24.04
name: Verify codes, generated files
timeout-minutes: 40
env:
GOPATH: /home/runner/work/${{ github.repository }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
path: ./src/github.com/${{ github.repository }}
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Run verify test
run: |
make lint
make verify
make TAG=latest generate-yaml
make verify-generated-yaml
sudo make unit-test
working-directory: ./src/github.com/${{ github.repository }}