Skip to content

Fix health, peers and metrics #120

Fix health, peers and metrics

Fix health, peers and metrics #120

Workflow file for this run

name: Build
on:
pull_request
jobs:
build:
name: Go
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false
id: go
- name: Print Go version
run: go version
- name: Build
run: go build -v .
build_docker:
name: Docker
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build Docker image
run: docker build . --file Dockerfile --tag inx-dashboard:latest