Skip to content

feat(hub): add bridge transaction api (#28) #14

feat(hub): add bridge transaction api (#28)

feat(hub): add bridge transaction api (#28) #14

Workflow file for this run

name: Lint
on:
push:
branches:
- main
paths-ignore:
- "deploy/**"
pull_request:
paths-ignore:
- "deploy/**"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.21"
- name: Configure git for private modules
env:
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: git config --global url."https://git:${TOKEN}@github.com".insteadOf "https://github.com"
- uses: actions/checkout@v3
- name: GolangCI Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2