File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,19 @@ jobs:
2727 python3-requests
2828 python3-semantic_version
2929 python3-specfile
30- task: lint
30+ task: PATH=${PATH}:/github/home/.local/bin make -f Makefile lint
3131 - dependencies : >
3232 black
3333 python3-isort
3434 shfmt
35- task: fmt-travis
35+ task: make -f Makefile fmt-travis
3636 - dependencies : >
3737 yamllint
38- task: yamllint
38+ task: make -f Makefile yamllint
3939 - dependencies : >
4040 findutils
4141 ShellCheck
42- task: shellcheck
42+ task: make -f Makefile shellcheck
4343 runs-on : ubuntu-latest
4444 container : fedora:41 # CURRENT DEVELOPMENT ENVIRONMENT
4545 steps :
4848 run : >
4949 dnf install -y
5050 make
51+ pip
5152 ${{ matrix.dependencies }}
53+ - name : Install pyright
54+ run : pip install --user pyright
5255 - name : Run test
53- run : make -f Makefile ${{ matrix.task }}
56+ run : ${{ matrix.task }}
Original file line number Diff line number Diff line change 44 pylint ./dependency_management/* --disable=R0801
55 pylint ./misc_scripts/* .py --disable=R0801
66 pylint ./release_management/* .py --disable=R0801
7+ pyright
78
89.PHONY : fmt
910fmt :
You can’t perform that action at this time.
0 commit comments