Skip to content

feat: sign and notarize macOS binaries during release #8

feat: sign and notarize macOS binaries during release

feat: sign and notarize macOS binaries during release #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: gofmt
run: |
diff <(gofmt -l .) <(printf "")
- name: go vet
run: go vet ./...
- name: go build
run: go build ./...
- name: go test
run: go test ./...