Skip to content

upgrade pyarrow version (#56) #116

upgrade pyarrow version (#56)

upgrade pyarrow version (#56) #116

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build python package
on:
push:
branches: [main]
paths-ignore:
- "performance_tests/**"
- "**.md"
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9","3.10"]
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 poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Set up Google Cloud SDK
uses: google-github-actions/setup-gcloud@v0.6.0
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
- name: Run lint and tests with tox
env:
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
AWS_BUCKET: ${{secrets.AWS_BUCKET}}
AWS_DEFAULT_REGION: ${{secrets.AWS_DEFAULT_REGION}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}}
AZURE_ACCOUNT_KEY: ${{secrets.AZURE_ACCOUNT_KEY}}
AZURE_ACCOUNT_NAME: ${{secrets.AZURE_ACCOUNT_NAME}}
GCP_BUCKET: ${{secrets.GCP_BUCKET}}
GCP_PROJECT_ID: ${{secrets.GCP_PROJECT_ID}}
GCP_SA_KEY: ${{secrets.GCP_SA_KEY}}
run: |
poetry run tox