cleaned
All checks were successful
Code Documentation / code-docs (push) Successful in 5s
Project Report / project-report (push) Successful in 3s
Validate Code / validate (push) Successful in 3s

This commit is contained in:
Frank Harris 2026-06-15 12:07:24 -05:00
parent 28c15035a4
commit ef405bb134
4 changed files with 0 additions and 38 deletions

View file

@ -1,4 +0,0 @@
<?php
echo "Hello Runlevel";
echo "this will error";

View file

@ -1,2 +0,0 @@
pickup test Fri Jun 12 09:10:59 CDT 2026
pickup test Fri Jun 12 09:11:19 CDT 2026

View file

@ -1 +0,0 @@
runner test Fri Jun 12 09:14:41 CDT 2026

View file

@ -1,31 +0,0 @@
name: Validate Code
on:
push:
pull_request:
jobs:
validate:
runs-on: linux-dev
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run validation
run: |
chmod +x tools/validate-code.sh
./tools/validate-code.sh || {
echo ""
echo "===== VALIDATION FAILED ====="
echo ""
if [ -f reports/errors.md ]; then
cat reports/errors.md
else
echo "No reports/errors.md file was created."
fi
exit 1
}