1
0
Fork 0

Adding upstream version 0.0~git20221030.f2a1913.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-18 22:22:16 +02:00
parent 958064e3c4
commit 2ef6a43d9f
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
19 changed files with 4554 additions and 0 deletions

18
.build.yml Normal file
View file

@ -0,0 +1,18 @@
image: archlinux
packages:
- go
- postgresql
sources:
- https://github.com/go-ap/jsonld
environment:
GO111MODULE: 'on'
tasks:
- setup: |
cd jsonld && go mod download
- tests: |
cd jsonld && make test
- coverage: |
set -a +x
cd jsonld && make coverage
GIT_SHA=$(git rev-parse --verify HEAD)
GIT_BRANCH=$(git name-rev --name-only HEAD)