File tree Expand file tree Collapse file tree 2 files changed +27
-4
lines changed Expand file tree Collapse file tree 2 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+ # SPDX-License-Identifier: BSD-2-Clause
3+
4+ on :
5+ workflow_call :
6+
7+ defaults :
8+ run :
9+ shell : bash
10+
11+ jobs :
12+ check-style :
13+ runs-on : ubuntu-latest
14+ container :
15+ image : rapidsai/ci-conda:latest
16+ steps :
17+ - name : Checkout code
18+ uses : actions/checkout@v4
19+ with :
20+ fetch-depth : 0
21+ - uses : actions/cache@v4
22+ with :
23+ path : ~/.cache/pre-commit
24+ key : pre-commit-0|${{ hashFiles('.pre-commit-config.yaml') }}
25+ - name : Run ci/check_style.sh
26+ run : ci/check_style.sh
Original file line number Diff line number Diff line change 3232 secrets : inherit
3333 uses :
rapidsai/shared-workflows/.github/workflows/[email protected] 3434 checks :
35- secrets : inherit
36- uses :
rapidsai/shared-workflows/.github/workflows/[email protected] 37- with :
38- enable_check_generated_files : false
35+ uses : ./.github/workflows/checks.yaml
3936 compute-matrix :
4037 runs-on : ubuntu-latest
4138 outputs :
You can’t perform that action at this time.
0 commit comments