Skip to content

Commit

Permalink
try try
Browse files Browse the repository at this point in the history
  • Loading branch information
sesheffield committed Jul 25, 2024
1 parent 40d8dbb commit 0978b60
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: Lint Checks
on:
workflow_call:

permissions:
# Required: allow read access to the content for analysis.
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
# Optional: allow write access to checks to allow the action to annotate code in the PR.
checks: write

# run per commit ci checks against this commit
jobs:
proto-lint:
Expand All @@ -11,9 +20,16 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
cache: true
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
files: |
*.go
- name: List all changed files
env:
Expand Down
1 change: 1 addition & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,7 @@ func NewApp(
app.stakingKeeper,
&app.distrKeeper,
)

savingsKeeper := savingskeeper.NewKeeper(
appCodec,
keys[savingstypes.StoreKey],
Expand Down
1 change: 1 addition & 0 deletions cmd/kava/cmd/rocksdb/compact.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ var allowedDBs = []string{"application", "blockstore", "state"}

func CompactRocksDBCmd() *cobra.Command {
cmd := &cobra.Command{

Use: fmt.Sprintf(
"compact <%s>",
strings.Join(allowedDBs, "|"),
Expand Down

0 comments on commit 0978b60

Please sign in to comment.