Skip to content

refactor: quick fixes from 12-expert review + design doc #8

refactor: quick fixes from 12-expert review + design doc

refactor: quick fixes from 12-expert review + design doc #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go vet ./...
- run: CGO_ENABLED=0 go test ./...
- name: Test launcher module
run: cd sandbox/launcher && go vet ./... && go test ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v8