Skip to content

Remove dependence on RAPIDS utils for running PR CI #37

Remove dependence on RAPIDS utils for running PR CI

Remove dependence on RAPIDS utils for running PR CI #37

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / pr

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yaml (Line: 33, Col: 5): Required property is missing: runs-on .github/workflows/pr.yaml (Line: 44, Col: 5): Required property is missing: runs-on
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"