Skip to content

Commit

Permalink
Merge branch 'main' into fix/multihop-ics20
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat authored Jan 21, 2024
2 parents c205d0c + 7971a28 commit d9a2f6a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/icq-relayer-build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

on: [push, pull_request]
name: icq-relayer
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: |
cd icq-relayer
go test ./...
build:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go build icq-relayer/...
2 changes: 1 addition & 1 deletion icq-relayer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.5-alpine3.18 as build
FROM golang:1.21.5-alpine3.19 as build

WORKDIR /src/app

Expand Down
2 changes: 1 addition & 1 deletion web-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"bech32": "^2.0.0",
"bun": "^1.0.3",
"bun-framework-next": "latest",
"chain-registry": "1.19.0",
"chain-registry": "1.25.4",
"chakra-react-select": "^4.7.6",
"cosmjs-types": "0.9.0",
"crypto-js": "^4.2.0",
Expand Down

0 comments on commit d9a2f6a

Please sign in to comment.