Skip to content

Bump pyarrow from 12.0.1 to 14.0.2 in /services/python #14

Bump pyarrow from 12.0.1 to 14.0.2 in /services/python

Bump pyarrow from 12.0.1 to 14.0.2 in /services/python #14

Workflow file for this run

name: Validate Pipeline
on:
pull_request:
branches:
- main
workflow_dispatch: {}
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 16
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
pip install --no-cache-dir -r services/python/requirements.txt
- name: Lint with flake8
run: |
flake8 bin --count --select=E9,F63,F7,F82 --show-source --statistics