Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…uilding into main
  • Loading branch information
LiamSwayne committed Nov 21, 2023
2 parents 662e710 + e3c4f07 commit 65fa66c
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/run_program.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,14 @@ jobs:
git config --global user.email "[email protected]"
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
Expand All @@ -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'
Expand Down

0 comments on commit 65fa66c

Please sign in to comment.