Skip to content

Bump cross-spawn from 7.0.3 to 7.0.6 in /src/psaggregator in the npm_and_yarn group #58

Bump cross-spawn from 7.0.3 to 7.0.6 in /src/psaggregator in the npm_and_yarn group

Bump cross-spawn from 7.0.3 to 7.0.6 in /src/psaggregator in the npm_and_yarn group #58

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