Update create map dialog to indicate the plugin requires a paid Felt plan #446
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: Linting | |
on: | |
push: | |
paths: | |
- "felt/**" | |
- ".github/workflows/lint.yaml" | |
pull_request: | |
types: [opened, synchronize, edited] | |
jobs: | |
Check-code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.9' | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Install packages | |
run: | | |
pip install -r requirements/testing.txt | |
pip install pylint pycodestyle | |
- name: flake8 Lint | |
uses: py-actions/flake8@v1 | |
- name: Pycodestyle | |
run: make pycodestyle |