We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e82ac commit 2ff535eCopy full SHA for 2ff535e
1 file changed
.github/workflows/main.yml
@@ -24,7 +24,12 @@ jobs:
24
steps:
25
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
- uses: actions/checkout@v2
27
-
+ - name: Install packages for spell check and perform spell check
28
+ run: |
29
+ sudo apt install aspell-en
30
+ pip install pyspelling
31
+ pyspelling
32
+ echo finished spell checking
33
- name: check linting using pycodestyle
34
run: |
35
pip install pycodestyle
@@ -36,9 +41,6 @@ jobs:
36
41
37
42
pip install pylint
38
43
pylint $(git ls-files '*.py')
39
40
- pip install pyspelling
- pyspelling
44
- name: tkinter
45
46
# try to install tkinter
0 commit comments