Skip to content

Add missing properties #38

Add missing properties

Add missing properties #38

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:
runs-on: ubuntu-latest
container:
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:
runs-on: ubuntu-latest
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"