Skip to content

feat(evidence): repo-scoped session evidence verb #281

feat(evidence): repo-scoped session evidence verb

feat(evidence): repo-scoped session evidence verb #281

Workflow file for this run

# GENERATED FILE - DO NOT EDIT DIRECTLY
# generator: gds
# bundle: 0.9.7-dev
# source-tree-digest: sha256:a585302e6ef2f8fa86e88dcd6dd692ea4fc04ad03de874fe719b0c0dd2e891a4
# input-digest: sha256:beddf89f25e80a82d63914f92f8689f2d0d0873c581ca420496c4521367a7ebd
# output-digest: sha256:b9bf3d0c64c0fb371596e7d090e82e62aebbfde91929115fc15fb28644e4fd38
# edit-source:
# - .gds/repository.yaml
# - policies/base/repository-default.yaml
# - policies/repositories/github-device-sync.yaml
# - policies/roles/public-module.yaml
# - policies/stacks/continuous-development.yaml
# - templates/agents/repository.md.tmpl
# - templates/github-actions/go.yml.tmpl
# - templates/harnesses/claude.md.tmpl
name: gds-ci
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
permissions: {}
concurrency:
group: gds-ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
fast:
name: GDS fast
permissions:
contents: read
uses: NDDev-OpenNetwork/ci-workflows/.github/workflows/go-ci.yml@9eb9e070ae87b0fc3bdbd2cbed5afe3b92f7e2c7
with:
fetch_depth: 0
# Public hosted CI uses GitHub's service cache; the pinned reusable
# workflow owns cache keys and invalidation, so no runner-local state is trusted.
cache: true
runner: "ubuntu-latest"
go_version: "1.27.1"
# Declared fast commands own their build scope; the complete build is below.
build_command: ""
test_command: "scripts/validate_shell.sh && scripts/validate_go_core.sh --fast"
timeout_minutes: 30
pr-required:
name: GDS PR required
# Run the declared fast checks first. Repositories can keep this phase
# inexpensive and reserve their full test/build commands for this job.
needs: fast
permissions:
contents: read
uses: NDDev-OpenNetwork/ci-workflows/.github/workflows/go-ci.yml@9eb9e070ae87b0fc3bdbd2cbed5afe3b92f7e2c7
with:
fetch_depth: 0
cache: true
runner: "ubuntu-latest"
go_version: "1.27.1"
build_command: "go build -trimpath ./core/cmd/gds"
test_command: "go test ./... && python3 -m pip install --quiet --require-hashes -r requirements/test.txt && python3 -m pytest"
timeout_minutes: 30