Initial commit: create table, column and schemaparse
Some checks failed
CI / release-test (push) Failing after 4s

This commit is contained in:
2025-07-04 19:42:30 -07:00
commit 654585256c
5 changed files with 276 additions and 0 deletions

21
.gitea/workflows/CI.yaml Normal file
View File

@@ -0,0 +1,21 @@
name: CI
on: [push]
jobs:
release-test:
container:
image: offline-twitter/go
volumes:
- woodpecker-gocache:/go-cache-volume
env:
GOPATH: /go-cache-volume
GOCACHE: /go-cache-volume/build-cache
steps:
- name: checkout
run: |
GOBIN=/usr/local/go/bin go install git.offline-twitter.com/offline-labs/gocheckout@0.0.1
gocheckout
- name: test
run: |
go test ./...