adding a bit more documentation, cleaning up readme #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pylint | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: start Docker | |
run: docker build -t balltracking . | |
- name: Analysing the code with pylint inside docker | |
run: docker run -v $(pwd):/balltracking --ipc host balltracking pylint --fail-under=5 $(git ls-files '*.py') |