Skip to content

release: v0.3.0 pub recent, quota warnings, richer 404 hints #10

release: v0.3.0 pub recent, quota warnings, richer 404 hints

release: v0.3.0 pub recent, quota warnings, richer 404 hints #10

Workflow file for this run

name: CI
on:
push:
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: Run Unit + Integration (Gated) Tests
run: go test ./...
- name: Vet
run: go vet ./...
cross-build-smoke:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- goos: linux
goarch: amd64
- goos: linux
goarch: arm64
- goos: windows
goarch: amd64
- goos: darwin
goarch: arm64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Cross-Compile Smoke Test
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CGO_ENABLED: "0"
run: |
out="epo"
if [ "$GOOS" = "windows" ]; then out="epo.exe"; fi
go build -trimpath -o "$out" ./cmd/epo