Skip to content

Commit

Permalink
Refactor on-commit workflow to include running runall.py and committi…
Browse files Browse the repository at this point in the history
…ng results
  • Loading branch information
Kseen715 committed Aug 6, 2024
1 parent 5425d4d commit 69f7d76
Showing 1 changed file with 22 additions and 14 deletions.
36 changes: 22 additions & 14 deletions .github/workflows/on-commit.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
# run runall.py on commit and commit result to the repo
name: On Commit
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Set up Python 3.8"
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: "Run tests"
run: python ./src/runall.py
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Set up Python"
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: "Run all"
run: python ./src/runall.py
- name: "Commit results"
run: |
git config --global user.email ""
git config --global user.name "GitHub Actions"
git add .
git commit -m "Run all"
git push

0 comments on commit 69f7d76

Please sign in to comment.