Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update pull request template link to contributing guidlines #56

Update pull request template link to contributing guidlines

Update pull request template link to contributing guidlines #56

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) <2025> NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
container:
image: ghcr.io/nvidia/cutile-python/lint:2025-12-06-4cb7d16e4c20
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Run flake8
run: flake8
- name: Run cpplint
run: python3 ci/cpplint.py
- name: Check license headers (REUSE)
run: ci/scripts/check_license.sh
- name: Check inline samples are up to date
run: python3 test/tools/inline_samples.py --check