Add string methods #20
Workflow file for this run
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 Black via Poetry on opened, synchronised, reopened pull requests. | |
name: Run Black code formatter | |
on: | |
pull_request: | |
paths: | |
- "**.py" | |
jobs: | |
black: | |
uses: acdh-oeaw/prosnet-workflows/.github/workflows/poetry-black.yml@v0.3.5 | |
with: | |
src: "." | |
options: "--check --diff --color" |