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 13696e1 commit d69a433Copy full SHA for d69a433
.github/workflows/black.yml
.github/workflows/build.yml
@@ -58,3 +58,23 @@ jobs:
58
run: |
59
cd docs
60
make html
61
+
62
+ lint:
63
+ runs-on: ubuntu-latest
64
+ steps:
65
+ - name: checkout
66
+ uses: actions/checkout@v2
67
68
+ - name: Setup Python
69
+ uses: actions/setup-python@v2
70
+ with:
71
+ python-version: 3.8
72
73
+ - name: install black
74
+ run: |
75
+ python -m ensurepip
76
+ pip install black
77
78
+ - name: run linter
79
80
+ black twitchio --line-length 120 --verbose --check
0 commit comments