Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pirtleshell committed Nov 6, 2023
1 parent daee4d9 commit 509c35f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 20 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
cache: true
go-version-file: go.mod
- name: build application
run: make build
test:
Expand All @@ -26,9 +24,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
cache: true
go-version-file: go.mod
- name: run unit tests
run: make test
- name: run e2e tests
Expand All @@ -55,9 +51,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
cache: true
go-version-file: go.mod
- name: build kava cli
run: make install
- name: checkout repo from current commit to validate current branch's genesis
Expand All @@ -72,9 +66,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
cache: true
go-version-file: go.mod
- name: build kava cli
run: make install
- name: validate protonet genesis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
Expand Down
25 changes: 20 additions & 5 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,23 @@ on:
branches:
- rp-ci-updates
jobs:
docker:
uses: ./.github/workflows/ci-docker.yml
with:
dockerhub-username: kavaops
secrets: inherit
# docker:
# uses: ./.github/workflows/ci-docker.yml
# with:
# dockerhub-username: kavaops
# secrets: inherit
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo from current commit
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: run unit tests
run: make test
- name: run e2e tests
run: make docker-build test-e2e
1 change: 0 additions & 1 deletion .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
- run: go mod download
- run: make install-build-deps
- run: make check-proto-deps
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/kvtool

0 comments on commit 509c35f

Please sign in to comment.