Skip to content

Commit

Permalink
Check formatting on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dechamps committed Nov 18, 2023
1 parent d3eab5b commit dbd1a82
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,10 @@ jobs:
- run: python -m venv .venv
- run: .venv/bin/pip install --requirement pylint-requirements.txt --requirement requirements.txt
- run: .venv/bin/pylint --verbose src videojitter_test
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: python -m venv .venv
- run: .venv/bin/pip install --requirement black-requirements.txt
- run: .venv/bin/black --diff --check .
2 changes: 2 additions & 0 deletions black-requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# pip-tools `pip-compile` input file for pinning black.
black
18 changes: 18 additions & 0 deletions black-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --strip-extras black-requirements.in
#
black==23.11.0
# via -r black-requirements.in
click==8.1.7
# via black
mypy-extensions==1.0.0
# via black
packaging==23.2
# via black
pathspec==0.11.2
# via black
platformdirs==4.0.0
# via black

0 comments on commit dbd1a82

Please sign in to comment.