@stream44.studio/t44-docker.com 0.1.0-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ # DCO Signatures
2
+
3
+ This file contains a permanent record of all Developer Certificate of Origin (DCO) agreements.
4
+ Each contributor who has agreed to the DCO.md is listed below with their signing date.
5
+ Format: name <email> | signed: <date> | agreement: <commit> (<agreement_change_date>) [| signature: <key_fingerprint>]
6
+
7
+ ---
8
+
9
+ Christoph <christoph@christoph.diy> | signed: 2026-02-19 19:01:22 UTC | agreement: 43ebc4bb360bc9f08e38c444e3d7ee817a472f5d (2026-02-19 14:00:59 -0500) | signature: SHA256:PJKqkaWh/+N7Zkmr59Zvgi92ByLmULIUMbubiUiY8X4
@@ -0,0 +1,12 @@
1
+ name: DCO Signatures
2
+ on: [push, pull_request]
3
+ jobs:
4
+ dco:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ with:
9
+ fetch-depth: 0
10
+ - uses: Stream44/dco@main
11
+ with:
12
+ enforceSignatureFingerprints: true
@@ -0,0 +1,13 @@
1
+ name: Gordian Open Integrity
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ gordian-open-integrity:
7
+ name: Gordian Open Integrity
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ with:
12
+ fetch-depth: 0
13
+ - uses: Stream44/t44-blockchaincommons.com@main
@@ -0,0 +1,29 @@
1
+ name: Tests
2
+
3
+ on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
+ branches: [ "main" ]
8
+
9
+ jobs:
10
+ test:
11
+ name: Run Tests
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
+
17
+ - name: Setup Bun
18
+ uses: oven-sh/setup-bun@v2
19
+ with:
20
+ bun-version: latest
21
+
22
+ - name: Install dependencies
23
+ run: bun install
24
+
25
+ - name: Verify Docker is available
26
+ run: docker version
27
+
28
+ - name: Run tests
29
+ run: bun test --bail --timeout 180000