We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed70f2e commit ef00863Copy full SHA for ef00863
.github/workflows/ci.yml
@@ -38,7 +38,8 @@ jobs:
38
runs-on: ubuntu-20.04
39
steps:
40
- uses: actions/checkout@v2
41
- - uses: psf/[email protected] # TODO: upgrade after dropping Python 2 support.
42
- with:
43
- src: ffmpeg # TODO: also format `examples`.
44
- version: 21.12b0
+ - name: Black
+ run: |
+ # TODO: use standard `psf/black` action after dropping Python 2 support.
+ pip install black==21.12b0 click==8.0.2 # https://stackoverflow.com/questions/71673404
45
+ black ffmpeg --check --color --diff
0 commit comments