Skip to content

Bootstrap coder-k8s repository scaffolding #1

Bootstrap coder-k8s repository scaffolding

Bootstrap coder-k8s repository scaffolding #1

Workflow file for this run

name: CI
on:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Verify vendor is up to date
run: |
go mod tidy
go mod vendor
git diff --exit-code -- go.mod go.sum vendor/
- name: Run tests
env:
GOFLAGS: -mod=vendor
run: go test ./...
- name: Build
env:
GOFLAGS: -mod=vendor
run: go build ./...