Skip to content

docs: update hero title to Deploy. Rotate. Burn. Rebuild. #5

docs: update hero title to Deploy. Rotate. Burn. Rebuild.

docs: update hero title to Deploy. Rotate. Burn. Rebuild. #5

Workflow file for this run

name: CI
on:
push:
branches: [stable, dev]
pull_request:
branches: [stable, dev]
jobs:
build:
name: Build & Vet
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Download dependencies
run: go mod download
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...