Skip to content

Commit facb5c7

Browse files
committed
Fix typo
1 parent 2922598 commit facb5c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Zero-configuration GitHub Action to maintain code quality with push and PR annotations.
44

55
On every push and pull request git diffs will get inline annotated with found errors from
6-
selected lintners.
6+
selected linters.
77

88
![Screenshot of annotations](static/annotations.png)
99

@@ -72,7 +72,7 @@ isort==isort-5.7.0
7272

7373
The python version you set up in your action script with `actions/setup-python@v2`
7474
or by other means will not affect the linting process. The python version used by
75-
the lintners can be set up only by `conda-python-version` argument! This also means
75+
the linters can be set up only by `conda-python-version` argument! This also means
7676
that if you modify the system conda environment it might affect the lintnig process.
7777
So it is best to keep the lintnig action separated from others. It is also recomended
7878
to run this on `ubuntu-latest`. Example:

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ runs:
8484
$CONDA/bin/conda --version
8585
$CONDA/bin/conda install python=${{ inputs.conda-python-version }}
8686
shell: bash
87-
name: Install lintners
87+
name: Install linters
8888
- run: |
8989
$CONDA/bin/python --version
9090
$CONDA/bin/pip install -r ${{ github.action_path }}/requirements.txt
9191
shell: bash
92-
name: Install lintners
92+
name: Install linters
9393
- run: >
9494
${{ github.action_path }}/entrypoint.sh
9595
'${{ inputs.python-root-list }}'

0 commit comments

Comments
 (0)