Skip to content

fix: skip hidden directories in discovery; read-only remote observation for quarantine #266

fix: skip hidden directories in discovery; read-only remote observation for quarantine

fix: skip hidden directories in discovery; read-only remote observation for quarantine #266

Workflow file for this run

# GENERATED FILE - DO NOT EDIT DIRECTLY
# generator: gds
# bundle: 0.9.6-dev
# source-tree-digest: sha256:b9d572eb73bb14ae8ede20dfc1e9317046dcb544270eff95153746f93f094820
# input-digest: sha256:90af33f4abbb808f5567e074347f17822cc610029e11a835fb5a8918c376ec9b
# 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