Skip to content

signer: serve the bech32 address over plain HTTP, no mTLS for public identity #19

signer: serve the bech32 address over plain HTTP, no mTLS for public identity

signer: serve the bech32 address over plain HTTP, no mTLS for public identity #19

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Set up Go
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
with:
go-version-file: go.mod
- name: go mod tidy check
run: |
go mod tidy
(cd api && go mod tidy)
git diff --exit-code go.mod go.sum api/go.mod api/go.sum
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...