Skip to content

feat: CI workflow, JetBrains Mono font, footer, CI badge, punchier he… #2

feat: CI workflow, JetBrains Mono font, footer, CI badge, punchier he…

feat: CI workflow, JetBrains Mono font, footer, CI badge, punchier he… #2

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 ./...