Skip to content

docs: add index.md landing page for GitHub Pages #9

docs: add index.md landing page for GitHub Pages

docs: add index.md landing page for GitHub Pages #9

Workflow file for this run

name: Go CI
on:
push:
branches: [ main, master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22', '1.23']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build ./...
- name: Run tests
run: go test -race -count=1 ./...
- name: Run vet
run: go vet ./...
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run staticcheck
run: staticcheck ./...