fix(theme): use Lucide link icon for heading anchors and remove dupli… #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| # Documentation only commits cannot change vet, build, or test results, so they | |
| # skip this workflow entirely. Test fixtures are written into t.TempDir from | |
| # inline Go strings rather than checked in, so no tracked .md file is test input. | |
| # Note that docs.yml is deliberately left unfiltered: it builds the site with a | |
| # binary compiled from this repo, so a Go change really can change the output. | |
| # GitHub Actions does not support YAML anchors, so the two lists below are | |
| # duplicated by necessity. | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "**.md" | |
| - "docs/**" | |
| - ".github/workflows/docs.yml" | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "**.md" | |
| - "docs/**" | |
| - ".github/workflows/docs.yml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| cache-dependency-path: go.sum | |
| - run: go vet ./... | |
| - run: go build ./... | |
| - run: go test -count=1 ./... |