Skip to content

fix: replace fabricated CLI output with real command output #6

fix: replace fabricated CLI output with real command output

fix: replace fabricated CLI output with real command output #6

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