OSI scope adjustment #17
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: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
pylint: | |
runs-on: ubuntu-latest | |
container: robertbindar/mariadb_jupyter_kernel:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
python -m pip install -r dev-requirements.txt | |
python setup.py develop | |
- name: Test with pylint | |
run: | | |
pylint mariadb_kernel/*.py |