Merge pull request #397 from CPJKU/cross_staff_voices #93
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: Blacken code | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Format code with black | |
run: | | |
pip install black | |
black ./partitura | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v4 | |
with: | |
author_name: ${{ github.actor }} | |
author_email: ${{ github.actor }}@users.noreply.github.com | |
message: "Format code with black (bot)" | |
add: "." | |
- name: Notify errors | |
if: failure() | |
uses: dawidd6/action-send-mail@v2 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
username: ${{ secrets.EMAIL_USERNAME }} | |
password: ${{ secrets.EMAIL_PASSWORD }} | |
subject: "Format code with black" | |
body: "Format code with black failed" | |
to: ${{ secrets.EMAIL_TO }} | |
from: ${{ secrets.EMAIL_FROM }} | |
content_type: text/plain |