Skip to content

feat: Add blog post

feat: Add blog post #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test ./...
- name: Run vet
run: go vet ./...
- name: Build
run: go build ./cmd/apideck