Skip to content

CI

CI #48

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-11-ca8b32e31766
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Run flake8
run: flake8
- name: Run cpplint
run: cpplint.py
- name: Check license headers (REUSE)
run: check_license.sh
- name: Check inline samples are up to date
run: python3 test/tools/inline_samples.py --check