Skip to content

dropped js2py function #110

dropped js2py function

dropped js2py function #110

Workflow file for this run

name: Lintererer
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: pipenv install --python ${{ matrix.python-version }}
- name: Run linter
run: pipenv run pylint $(git ls-files '*.py') --fail-under=9 --py-version=${{ matrix.python-version }}