Skip to content

[CLI] Bump version to v1.7.0 #149

[CLI] Bump version to v1.7.0

[CLI] Bump version to v1.7.0 #149

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "trunk" ]
pull_request:
branches: [ "trunk" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: |
cd ./gbm-cli
go get .
- name: Test
run: |
cd ./gbm-cli
go test -v ./...