Skip to content

Update README.md and Makefile to prep for release #16

Update README.md and Makefile to prep for release

Update README.md and Makefile to prep for release #16

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
format-and-test:
runs-on: ubuntu-latest
env:
GOPRIVATE: buf.build/gen/go
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # ratchet:actions/checkout@v4
- name: Install buf
uses: bufbuild/buf-setup-action@9672cee01808979ea1249f81d6d321217b9a10f6 # ratchet:bufbuild/buf-setup-action@v1
with:
version: "1.47.2"
buf_user: ${{ secrets.BUF_USER }}
buf_api_token: ${{ secrets.BUF_TOKEN }}
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # ratchet:actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Check Go Format
run: '[ ! "$(gofmt -s -l .)" ]'
- name: Check go vet
run: '[ ! "$(go vet ./...)" ]'
- name: Build
run: go build -v ./...
- name: Test
run: go test -shuffle=on -race ./...