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
name: Update and push test results | |
on: push | |
permissions: | |
contents: write | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Make test | |
run: make test | |
- name: Commit | |
run: | | |
git config --global user.name 'Caleb Stanford' | |
git config --global user.email '[email protected]' | |
git commit -am ":file_folder: Update test results" | |
git push |