We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e2b08c commit afc7a8dCopy full SHA for afc7a8d
1 file changed
.github/workflows/chronos-check.yml
@@ -2,15 +2,31 @@ name: chronos-check
2
3
on:
4
push:
5
+ paths:
6
+ - ".github/workflows/chronos-check.yml"
7
+ - "**/*.tex"
8
+ - "**/*.md"
9
pull_request:
10
11
12
13
14
15
jobs:
16
paper_only_check:
17
runs-on: ubuntu-latest
18
steps:
19
+ - name: Guard — lean-toolchain (optional, informational)
20
+ run: |
21
+ if [ -f lean-toolchain ]; then
22
+ echo "lean-toolchain present:"
23
+ cat lean-toolchain
24
+ else
25
+ echo "lean-toolchain not present — paper-only repo"
26
+ fi
27
+
28
- name: Paper-only repository check
29
run: |
30
echo "Chronos-EntropyDepth is paper-only."
- echo "No Lean or executable artifacts required."
31
+ echo "No Lean, Lake, or executable artifacts required."
32
exit 0
-
0 commit comments