Skip to content

docs: remove open-beta hint #60

docs: remove open-beta hint

docs: remove open-beta hint #60

Workflow file for this run

name: ci
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
go-event-kit-api:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./go/event_kit_api
steps:
- uses: actions/checkout@v4
with:
# increased fetch depth to support git diff
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- run: ./build.sh
- run: go get
- run: go test
- run: git diff --exit-code
name: "Ensure that Go API changes (as a consequence of OpenAPI spec changes) are checked in"