Files
web/.gitea/workflows/verify.yml
T
gamertan 3a4b6db9b8
verify / verify (push) Successful in 2m55s
feat: publish Gamertan Web Foundations preview source
Export the reviewed application-neutral package set through the exact public allowlist. Development history and private application evidence remain outside this canonical source root.

Developed with material AI assistance under maintainer review.

Signed-off-by: Cole Speelman <crspeelman@gmail.com>
2026-08-16 15:05:40 -04:00

29 lines
774 B
YAML

# SPDX-License-Identifier: AGPL-3.0-only
name: verify
on:
push:
branches: [main, 'codex/**']
workflow_dispatch:
permissions:
contents: read
jobs:
verify:
runs-on: himesan-go1266
timeout-minutes: 25
env:
GOTOOLCHAIN: local
GOWORK: off
steps:
- name: Require the repository owner
run: test "$GITHUB_ACTOR" = gamertan
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
persist-credentials: false
- name: Verify Go toolchain
run: test "$(go env GOVERSION)" = go1.26.6
- name: Verify
run: ./scripts/verify.sh
- name: Require an unchanged checkout
run: test -z "$(git status --porcelain=v1 --untracked-files=all)"