Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mschrader15 authored Oct 2, 2024
1 parent b1933b9 commit 4bb0a9d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
name: Pip

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.9", "3.11"]

runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Add requirements
run: python -m pip install --upgrade wheel setuptools

- name: Install Apache Arrow
run: |
if [ "${{ matrix.platform }}" == "ubuntu-latest" ]; then
sudo apt update
sudo apt install -y libapache-arrow-dev
elif [ "${{ matrix.platform }}" == "macos-latest" ]; then
brew install apache-arrow
elif [ "${{ matrix.platform }}" == "windows-latest" ]; then
choco install apache-arrow
fi
- name: Build and install
run: pip install --verbose .

# - name: Test
# run: python -m pytest

0 comments on commit 4bb0a9d

Please sign in to comment.