Add CI policy, strengthen hash-pinning rule, add Gitea Actions workflow
所有检查均成功
check / check (push) Successful in 16s

- All Dockerfiles must run make check as a build step
- Every repo needs a Gitea Actions workflow running docker build on push
- Greatly strengthen the hash-pinning rule: explicitly list all reference
  types, ban curl|bash installs, mark as most important rule in document
- Add model .gitea/workflows/check.yml pinned by commit hash
这个提交包含在:
2026-02-22 16:35:42 +01:00
父节点 7f4ed7edbd
当前提交 f43445caea
修改 4 个文件,包含 40 行新增8 行删除

查看文件

@@ -0,0 +1,9 @@
name: check
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
# actions/checkout v4.2.2, 2026-02-22
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- run: docker build .