1 parent 6412652 commit 13a7ba8Copy full SHA for 13a7ba8
1 file changed
.github/workflows/ci.yml
@@ -7,7 +7,12 @@ jobs:
7
- uses: actions/checkout@v4
8
- uses: actions/setup-python@v5
9
with: { python-version: '3.12' }
10
- - run: pip install -r requirements.txt
+ - name: Install dependencies
11
+ run: |
12
+ if [ -f requirements.txt ]; then pip install -r requirements.txt
13
+ elif [ -f requirements.md ]; then pip install -r requirements.md
14
+ else echo "No requirements file found — skipping dependency installation"
15
+ fi
16
- run: python verification/validate_math_tree_softmax.py
17
- run: python verification/validate_math_vapo_discrete_learning.py
- - run: python verification/validate_math_tree_softmax_torch.py
18
+ - run: python verification/validate_math_tree_softmax_torch.py
0 commit comments