Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,12 @@ linters:
- github.com/smartcontractkit/chainlink-common/pkg/beholder
- github.com/smartcontractkit/chainlink-common/pkg/utils/tests
- github.com/smartcontractkit/chainlink-common/pkg/sqlutil
# Keystore is its own go.mod, separate from chainlink-common, but in the same repo.
- github.com/smartcontractkit/chainlink-common/keystore
- github.com/smartcontractkit/chainlink-protos/orchestrator/feedsmanager
deny:
- pkg: github.com/smartcontractkit/chainlink
desc: No chainlink dependencies in executor packages
desc: No chainlink dependencies in verifier/executor packages

test:
list-mode: lax
Expand Down
12 changes: 12 additions & 0 deletions .mockery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ dir: ./internal/mocks
outpkg: mocks

packages:
github.com/smartcontractkit/chainlink-ccv/common/jdclient:
interfaces:
ClientInterface:

github.com/smartcontractkit/chainlink-ccv/common/jobstore:
interfaces:
StoreInterface:

github.com/smartcontractkit/chainlink-ccv/common/jdlifecycle:
interfaces:
JobRunner:

github.com/smartcontractkit/chainlink-ccv/pkg/chainaccess:
interfaces:
SourceReader:
Expand Down
Loading
Loading