File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
Zero-configuration GitHub Action to maintain code quality with push and PR annotations.
4
4
5
5
On every push and pull request git diffs will get inline annotated with found errors from
6
- selected lintners .
6
+ selected linters .
7
7
8
8
![ Screenshot of annotations] ( static/annotations.png )
9
9
@@ -72,7 +72,7 @@ isort==isort-5.7.0
72
72
73
73
The python version you set up in your action script with `actions/setup-python@v2`
74
74
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
76
76
that if you modify the system conda environment it might affect the lintnig process.
77
77
So it is best to keep the lintnig action separated from others. It is also recomended
78
78
to run this on `ubuntu-latest`. Example :
Original file line number Diff line number Diff line change @@ -84,12 +84,12 @@ runs:
84
84
$CONDA/bin/conda --version
85
85
$CONDA/bin/conda install python=${{ inputs.conda-python-version }}
86
86
shell: bash
87
- name: Install lintners
87
+ name: Install linters
88
88
- run : |
89
89
$CONDA/bin/python --version
90
90
$CONDA/bin/pip install -r ${{ github.action_path }}/requirements.txt
91
91
shell: bash
92
- name: Install lintners
92
+ name: Install linters
93
93
- run : >
94
94
${{ github.action_path }}/entrypoint.sh
95
95
'${{ inputs.python-root-list }}'
You can’t perform that action at this time.
0 commit comments