Skip to content

fix(claude): stop macOS Keychain corrupting OAuth credentials on refresh #181

fix(claude): stop macOS Keychain corrupting OAuth credentials on refresh

fix(claude): stop macOS Keychain corrupting OAuth credentials on refresh #181

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Build, vet, test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: CGO_ENABLED=0 go test ./...