Skip to content

Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3 #177

Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3

Bump github.com/urfave/cli/v2 from 2.27.2 to 2.27.3 #177

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build CLI
run: go build -v ./cmd/cli
- name: Build web API
run: go build -v ./cmd/webapi
- name: Test
run: go test -v ./...