Merge remote-tracking branch 'origin/main' into forge/ACX-E2E-1785394564819-attempt-3-run-6ffc72749088
This commit is contained in:
commit
25e180cf9b
1 changed files with 32 additions and 0 deletions
32
.forgejo/workflows/verify.yml
Normal file
32
.forgejo/workflows/verify.yml
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
name: Verify
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
source-contract:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 15
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Verify repository entrypoints
|
||||||
|
run: |
|
||||||
|
test -f app/build.sh
|
||||||
|
test -f app/src/ac/ac_svr.pgc
|
||||||
|
test -d app/src/ac/svc
|
||||||
|
test -f docker/docker-compose.yml
|
||||||
|
|
||||||
|
- name: Validate JSON artifacts
|
||||||
|
run: git ls-files -z '*.json' | xargs -0 -r -n1 python3 -m json.tool >/dev/null
|
||||||
|
|
||||||
|
- name: Validate shell scripts
|
||||||
|
run: git ls-files -z '*.sh' | xargs -0 -r -n1 bash -n
|
||||||
|
|
||||||
|
- name: Compile analysis tools
|
||||||
|
run: python3 -m compileall -q tools
|
||||||
Loading…
Add table
Add a link
Reference in a new issue