Skip to content

Merge branch 'main' of https://github.com/LiamSwayne/Carbon-Neutral-B… #44

Merge branch 'main' of https://github.com/LiamSwayne/Carbon-Neutral-B…

Merge branch 'main' of https://github.com/LiamSwayne/Carbon-Neutral-B… #44

Workflow file for this run

name: Execute test cases and send to README
on: # run on commits to the main branch
push:
branches:
- main
workflow_dispatch: # run when triggered manually
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v4 # checkout the repository content
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11' # install the python version needed
- name: Install packages
run: pip install cvxpy
- name: Configure Git identity
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- name: Execute python script first case
run: python linear_program.py 3 4 10 1
- name: Execute python script second case
run: python linear_program.py 5 2 3 2
- name: Execute python script third case
run: python linear_program.py 1 10 10 3
- name: Check for changes
id: git-check
run: |
git diff --exit-code || echo "Changes found"
- name: Stage files
if: steps.git-check.outputs.return-code == '0'
run: git add .
- name: Commit changed files
if: steps.git-check.outputs.return-code == '0'
run: |
git commit -m "🤖 run python script" || echo "No changes to commit"
- name: Fetch from main
if: steps.git-check.outputs.return-code == '0'
run: git fetch origin main
- name: Push code to main
if: steps.git-check.outputs.return-code == '0'
run: git push origin HEAD:main