Skip to content

server: add a schema migration manager for the local state DB #161

server: add a schema migration manager for the local state DB

server: add a schema migration manager for the local state DB #161

Workflow file for this run

name: Go presubmit
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Go presubmit
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: ['stable']
os: ['ubuntu-latest']
steps:
- uses: actions/checkout@v3
- name: Install Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- uses: creachadair/go-presubmit-action@v2