You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we have Github Actions PR merged, we might look into Black for automatic code formatting.
We might use something of a sort (not tested):
jobs:
format:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2with:
# hack, so that git-auto-commit-action@v4 works with checkout@v2ref: ${{ github.head_ref }}
- uses: psf/black@stablewith:
# overwrite options so that it does not do check-onlyoptions: "--verbose"
- name: Commit black formatting resultsuses: stefanzweifel/git-auto-commit-action@v4with:
commit_message: "Format Python code with psf/black push"
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
When we have Github Actions PR merged, we might look into Black for automatic code formatting.
We might use something of a sort (not tested):
The text was updated successfully, but these errors were encountered: