open-vault/tools/codechecker/main.go
hc-github-team-secure-vault-core d1210427d1
backport of commit 8c18f24b9da475c13f7908e609c5d4be24c773e6 (#21611) (#21615)
* combine into one checker

* combine and simplify ci checks

* add to test package list

* remove testing test

* only run deprecations check

* only run deprecations check

* remove unneeded repo check

* fix bash options

Co-authored-by: miagilepner <mia.epner@hashicorp.com>
2023-07-10 17:05:20 +02:00

15 lines
360 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"github.com/hashicorp/vault/tools/codechecker/pkg/godoctests"
"github.com/hashicorp/vault/tools/codechecker/pkg/gonilnilfunctions"
"golang.org/x/tools/go/analysis/multichecker"
)
func main() {
multichecker.Main(gonilnilfunctions.Analyzer, godoctests.Analyzer)
}