Skip to content

Update README brew instructions #23

Update README brew instructions

Update README brew instructions #23

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: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
smoke-test:
strategy:
matrix:
runner: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
# - name: Build
# run: go build -v
# - name: Test
# run: go test -v ./...
- name: Smoke Test
run: bash script/smoke_test.sh