Skip to content

Commit 8e41ed6

Browse files
authored
add ci
1 parent 49bfa1f commit 8e41ed6

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: verify
2+
on: [push, pull_request]
3+
jobs:
4+
verify:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-python@v5
9+
with: { python-version: '3.12' }
10+
- run: pip install -r requirements.txt
11+
- run: python verification/validate_math_tree_softmax.py
12+
- run: python verification/validate_math_vapo_discrete_learning.py
13+
- run: python verification/validate_math_tree_softmax_torch.py

0 commit comments

Comments
 (0)