-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor on-commit workflow to include running runall.py and committi…
…ng results
- Loading branch information
Showing
1 changed file
with
22 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |