diff --git a/.github/workflows/integration-ffi.yml b/.github/workflows/integration-ffi.yml index 0d9e72096a8..8f0797eea12 100644 --- a/.github/workflows/integration-ffi.yml +++ b/.github/workflows/integration-ffi.yml @@ -1,10 +1,9 @@ -name: FFI integration +name: Integration FFI on: [push, pull_request] jobs: - # test FFI against the C-Data interface exposed by pyarrow - pyarrow-integration-test: + docker: name: Test runs-on: ubuntu-latest steps: @@ -23,7 +22,6 @@ jobs: uses: actions/cache@v2 with: path: /home/runner/target - # this key is not equal because maturin uses different compilation flags. key: ${{ runner.os }}-amd64-target-maturin-cache - uses: actions/setup-python@v2 with: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration-ipc.yml similarity index 95% rename from .github/workflows/integration.yml rename to .github/workflows/integration-ipc.yml index d82a71b5988..7e55395b366 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration-ipc.yml @@ -1,10 +1,10 @@ -name: Integration +name: Integration IPC / Flight on: [push, pull_request] jobs: docker: - name: Integration Test + name: Test runs-on: ubuntu-latest steps: - name: Checkout Arrow diff --git a/.github/workflows/integration-parquet.yml b/.github/workflows/integration-parquet.yml index 0bfa715ba32..208098917b8 100644 --- a/.github/workflows/integration-parquet.yml +++ b/.github/workflows/integration-parquet.yml @@ -1,10 +1,10 @@ -name: Integration parquet +name: Integration Parquet on: [push, pull_request] jobs: docker: - name: Integration Test + name: Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2