diff --git a/.github/workflows/run_program.yml b/.github/workflows/run_program.yml index 7d3ebb4..1cff98e 100644 --- a/.github/workflows/run_program.yml +++ b/.github/workflows/run_program.yml @@ -23,17 +23,14 @@ jobs: git config --global user.email "actions@github.com" git config --global user.name "GitHub Actions" - - name: Install Python packages - run: pip install cvxpy + - name: Execute python script first case + run: python build_template_from_source.py 3 4 10 1 - - name: Execute Python script first case - run: python build_template_from_source.py 3 4 10 + - name: Execute python script second case + run: python build_template_from_source.py 5 2 3 2 - - name: Execute Python script second case - run: python build_template_from_source.py 5 2 3 - - - name: Execute Python script third case - run: python build_template_from_source.py 1 10 10 + - name: Execute python script third case + run: python build_template_from_source.py 1 10 10 3 - name: Check for changes id: git-check @@ -47,7 +44,7 @@ jobs: - name: Commit changed files if: steps.git-check.outputs.return-code == '0' run: | - git commit -m "🤖 auto-update test cases " || echo "No changes to commit" + git commit -m "🤖 run python script" || echo "No changes to commit" - name: Fetch from main if: steps.git-check.outputs.return-code == '0'