Skip to content

Pandas Test Job

Pandas Test Job #735

Workflow file for this run

name: Pandas Test Job
on:
workflow_dispatch:
inputs:
branch:
description: |
Git branch the workflow run targets.
Required even when 'sha' is provided because it is also used for organizing artifacts.
required: true
type: string
date:
description: "Date (YYYY-MM-DD) this run is for. Used to organize artifacts produced by nightly builds"
required: true
type: string
sha:
description: "Full git commit SHA to check out"
required: true
type: string
jobs:
pandas-tests:
# run the Pandas unit tests
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
with:
build_type: nightly
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
node_type: "gpu-l4-latest-1"
container_image: "rapidsai/citestwheel:25.10-latest"
script: ci/cudf_pandas_scripts/pandas-tests/run.sh main
file_to_upload: ./main-results.json
artifact-name: main-results.json