Skip to content

docs: professional README with badges, usage examples, and template g… #5

docs: professional README with badges, usage examples, and template g…

docs: professional README with badges, usage examples, and template g… #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build ./cmd/lanchr
- name: Test
run: go test -race -cover ./...
- name: Vet
run: go vet ./...