chore: reduce codeql time (#20158)
This commit is contained in:
parent
ca94eccb4c
commit
843fc134df
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
@ -11,6 +11,10 @@ on:
|
||||
paths:
|
||||
- "**.go"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
|
||||
7
.github/workflows/gosec.yml
vendored
7
.github/workflows/gosec.yml
vendored
@ -1,6 +1,9 @@
|
||||
name: Run Gosec
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
- release/**
|
||||
paths:
|
||||
- "**/*.go"
|
||||
- "go.mod"
|
||||
@ -13,6 +16,10 @@ on:
|
||||
- "go.mod"
|
||||
- "go.sum"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Gosec:
|
||||
permissions:
|
||||
|
||||
6
Makefile
6
Makefile
@ -96,8 +96,8 @@ ifeq (debug,$(findstring debug,$(COSMOS_BUILD_OPTIONS)))
|
||||
BUILD_FLAGS += -gcflags "all=-N -l"
|
||||
endif
|
||||
|
||||
#? all: Run tools build lint test vulncheck
|
||||
all: tools build lint test vulncheck
|
||||
#? all: Run tools build
|
||||
all: build
|
||||
|
||||
# The below include contains the tools and runsim targets.
|
||||
include contrib/devtools/Makefile
|
||||
@ -487,4 +487,4 @@ localnet-debug: localnet-stop localnet-build-dlv localnet-build-nodes
|
||||
help: Makefile
|
||||
@echo " Choose a command run in "$(PROJECT_NAME)":"
|
||||
@sed -n 's/^#?//p' $< | column -t -s ':' | sort | sed -e 's/^/ /'
|
||||
.PHONY: help
|
||||
.PHONY: help
|
||||
|
||||
Loading…
Reference in New Issue
Block a user