Skip to content

Commit 9627c0d

Browse files
authored
Merge pull request #56 from KiFoundation/feature/ica-modulebasics
Adds ICAHost to ModuleBasics
2 parents 861a293 + d165d06 commit 9627c0d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/gosec.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: Run Gosec
22
on:
3-
push:
43
pull_request:
4+
branches:
5+
- 2.0.x
6+
- 3.0.x
7+
- 4.0.x
58
jobs:
69
tests:
710
runs-on: ubuntu-latest
@@ -13,4 +16,4 @@ jobs:
1316
- name: Run Gosec Security Scanner
1417
uses: informalsystems/gosec@master
1518
with:
16-
args: -exclude-dir=tests ./...
19+
args: -exclude-dir=tests -exclude-dir=cmd ./...

app/app.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ var (
182182
transfer.AppModuleBasic{},
183183
vesting.AppModuleBasic{},
184184
wasm.AppModuleBasic{},
185+
ica.AppModuleBasic{},
185186
)
186187

187188
// module account permissions

0 commit comments

Comments
 (0)