feat: add k8s helm charts for indexer deployment #249
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: Python Linting Checks | |
'on': | |
push: | |
branches: | |
- main | |
pull_request: null | |
jobs: | |
style_checks: | |
name: Check Python Code Quality | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Update | |
run: sudo apt update | |
- name: Install OS dependencies | |
run: sudo apt install -y python3-dev nodejs | |
- name: Install pipenv | |
run: pip3 install pipenv | |
- name: Install dependencies | |
run: pipenv install --dev | |
- name: Install NodeJS dependencies | |
run: pipenv run yarn install | |
- name: Run style checks | |
run: pipenv run yarn pylint-checks |