We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c511dd9 commit 463449bCopy full SHA for 463449b
.github/workflows/solve_problem.yml
@@ -28,10 +28,9 @@ jobs:
28
python -m pip install --upgrade pip
29
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
31
- python -m pip install ./models_or-tools
+ pip install ./models_or-tools
32
33
- name: Run the script
34
run: |
35
pip freeze
36
- cd ./models_or-tools/problems
37
- python ${{ github.event.inputs.problem }}.py
+ python ./models_or-tools/problems/${{ github.event.inputs.problem }}.py
0 commit comments