Skip to content

wip(libs): attempt to fix code signing issue on Intel-based macs #247

wip(libs): attempt to fix code signing issue on Intel-based macs

wip(libs): attempt to fix code signing issue on Intel-based macs #247

Workflow file for this run

---
name: CI
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61
env:
VERBOSE: "true"
tidy:
name: Tidy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Check if mods are tidy
run: make check-tidy
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Run tests
run: make test
env:
VERBOSE: "true"
release-please:
runs-on: ubuntu-latest
if: github.ref_name == 'main' || github.ref_name == 'master'
steps:
- uses: jimeh/release-please-manifest-action@v1