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 33Zero-configuration GitHub Action to maintain code quality with push and PR annotations.
44
55On 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
7373The python version you set up in your action script with `actions/setup-python@v2`
7474or 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
7676that if you modify the system conda environment it might affect the lintnig process.
7777So it is best to keep the lintnig action separated from others. It is also recomended
7878to run this on `ubuntu-latest`. Example :
Original file line number Diff line number Diff 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 }}'
You can’t perform that action at this time.
0 commit comments