Implement karma-based programming language limits #882
This file contains hidden or 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: Python Bot CI pipeline | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| container: debian:bullseye-slim | |
| steps: | |
| - run: apt update && apt -y install pylint | |
| - uses: actions/checkout@v1 | |
| - name: Lint python bot | |
| run: | | |
| pylint ./python |