Skip to content

chore: demo separator lines + redact example config secrets #14

chore: demo separator lines + redact example config secrets

chore: demo separator lines + redact example config secrets #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Configure Go cache
run: |
mkdir -p /tmp/go-build /tmp/go-mod
go env -w GOCACHE=/tmp/go-build GOMODCACHE=/tmp/go-mod
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...