Update NEWS #182
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: Format and/or lint | |
on: | |
push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: get up on this | |
uses: actions/checkout@v2 | |
- name: hit it | |
run: ./mk/fmt.sh | |
- name: push it | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
git commit -am 'Format/Lint [Automated]' && git push || true |