Skip to content

Commit 2ff535e

Browse files
committed
fix ci
1 parent 15e82ac commit 2ff535e

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ jobs:
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2626
- uses: actions/checkout@v2
27-
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
2833
- name: check linting using pycodestyle
2934
run: |
3035
pip install pycodestyle
@@ -36,9 +41,6 @@ jobs:
3641
3742
pip install pylint
3843
pylint $(git ls-files '*.py')
39-
40-
pip install pyspelling
41-
pyspelling
4244
- name: tkinter
4345
run: |
4446
# try to install tkinter

0 commit comments

Comments
 (0)