From 0c07d588cdadbc810e01bd9e41a84c7d534838d3 Mon Sep 17 00:00:00 2001 From: timflannagan Date: Wed, 12 Jan 2022 23:06:47 -0500 Subject: [PATCH] tmp Signed-off-by: timflannagan --- .github/workflows/go.yaml | 4 ++-- .github/workflows/verify.yml | 1 - Makefile | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 8531f61c5..690f19a4c 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -3,11 +3,9 @@ on: push: branches: - master - - main pull_request: branches: - master - - main jobs: build: name: Build @@ -42,6 +40,8 @@ jobs: with: go-version: 1.17 id: go + - name: Print out Go env + run: go env - name: Check out code into the Go module directory uses: actions/checkout@v2 with: diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index b3ffa0db9..9fbf5f47e 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -3,7 +3,6 @@ on: push: branches: - master - - main pull_request: paths: - '**' diff --git a/Makefile b/Makefile index cc13de2a5..f86b7f333 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ endif REPO = github.com/operator-framework/api BUILD_PATH = $(REPO)/cmd/operator-verify -PKGS = $(shell go list ./...) +PKGS = $(shell go list ./... | grep -v /vendor/) .PHONY: help help: ## Show this help screen