Skip to content

docs: restore the canonical Apache-2.0 text verbatim #3

docs: restore the canonical Apache-2.0 text verbatim

docs: restore the canonical Apache-2.0 text verbatim #3

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: "1.24"
- run: gofmt -l . | tee /tmp/fmt && test ! -s /tmp/fmt
- run: go vet ./...
- run: go test -race ./...
- run: docker build -t pqc-admission-webhook:ci .