Skip to content

Commit 0c07d58

Browse files
committed
tmp
Signed-off-by: timflannagan <[email protected]>
1 parent 21fd627 commit 0c07d58

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/go.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ on:
33
push:
44
branches:
55
- master
6-
- main
76
pull_request:
87
branches:
98
- master
10-
- main
119
jobs:
1210
build:
1311
name: Build
@@ -42,6 +40,8 @@ jobs:
4240
with:
4341
go-version: 1.17
4442
id: go
43+
- name: Print out Go env
44+
run: go env
4545
- name: Check out code into the Go module directory
4646
uses: actions/checkout@v2
4747
with:

.github/workflows/verify.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- master
6-
- main
76
pull_request:
87
paths:
98
- '**'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endif
1111

1212
REPO = github.com/operator-framework/api
1313
BUILD_PATH = $(REPO)/cmd/operator-verify
14-
PKGS = $(shell go list ./...)
14+
PKGS = $(shell go list ./... | grep -v /vendor/)
1515

1616
.PHONY: help
1717
help: ## Show this help screen

0 commit comments

Comments
 (0)