Add raw.githubusercontent.com #31
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
# run runall.py on commit and commit result to the repo | |
name: On Commit | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
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 "Auto fracture run" || echo "Nothing to commit" | |
git push || echo "Nothing to push" |