Remove dependence on RAPIDS utils for running PR CI #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr | ||
on: | ||
push: | ||
branches: | ||
- "pull-request/[0-9]+" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
check-style: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rapidsai/ci-conda:latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
env: | ||
GIT_TRACE_PACKET: 1 | ||
GIT_TRACE: 1 | ||
GIT_CURL_VERBOSE: 1 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pre-commit | ||
key: pre-commit-0|${{ hashFiles('.pre-commit-config.yaml') }} | ||
- name: Check style | ||
run: "ci/check_style.sh" | ||
conda-build: | ||
container: | ||
Check failure on line 33 in .github/workflows/pr.yaml GitHub Actions / prInvalid workflow file
|
||
image: rapidsai/ci-conda:latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
env: | ||
GIT_TRACE_PACKET: 1 | ||
GIT_TRACE: 1 | ||
GIT_CURL_VERBOSE: 1 | ||
- name: Python build | ||
run: "ci/build_python.sh" | ||
wheel-build: | ||
container: | ||
image: "rapidsai/ci-wheel:latest" | ||
steps: | ||
- name: checkout code repo | ||
uses: actions/checkout@v3 | ||
env: | ||
GIT_TRACE_PACKET: 1 | ||
GIT_TRACE: 1 | ||
GIT_CURL_VERBOSE: 1 | ||
- name: Build and repair the wheel | ||
run: "./ci/build_wheel.sh" |