Skip to content

refactor: remove atlassian K8s secret and sandbox env injection #65

refactor: remove atlassian K8s secret and sandbox env injection

refactor: remove atlassian K8s secret and sandbox env injection #65

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