Skip to content

updating readme again #7

updating readme again

updating readme again #7

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 ./...