Skip to content

Bump the npm_and_yarn group in /src/psaggregator with 2 updates #69

Bump the npm_and_yarn group in /src/psaggregator with 2 updates

Bump the npm_and_yarn group in /src/psaggregator with 2 updates #69

Workflow file for this run

name: Python
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
working-directory: ./src/dataimport
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Lint Python code
working-directory: ./src/dataimport
run: |
pylint --errors-only ./*.py