Skip to content

Updating the tool to v1.1 #8

Updating the tool to v1.1

Updating the tool to v1.1 #8

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./cli
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- run: go mod tidy
- run: go build -v ./...
- run: go test ./...