Skip to content

Bump github.com/urfave/cli from 1.22.10 to 1.22.15 #22024

Bump github.com/urfave/cli from 1.22.10 to 1.22.15

Bump github.com/urfave/cli from 1.22.10 to 1.22.15 #22024

name: Build
on:
pull_request:
branches: [ master, rc/* ]
types: [opened, ready_for_review]
push:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
runs-on: [ubuntu-latest]
runs-on: ${{ matrix.runs-on }}
name: Build
steps:
- name: Set up Go 1.20.7
uses: actions/setup-go@v3
with:
go-version: 1.20.7
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: |
cd ${GITHUB_WORKSPACE}/cmd/node && go build .
cd ${GITHUB_WORKSPACE}/cmd/keygenerator && go build .
cd ${GITHUB_WORKSPACE}/cmd/logviewer && go build .
cd ${GITHUB_WORKSPACE}/cmd/termui && go build .