Skip to content

chore: update version from 0.1.0 to 0.1.1 #7

chore: update version from 0.1.0 to 0.1.1

chore: update version from 0.1.0 to 0.1.1 #7

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: "Pre-commit"
on:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Get modified files
id: modified-files
run: echo "modified_files=$(git diff --name-only -r HEAD^1 HEAD | xargs)" >> $GITHUB_OUTPUT
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0
with:
extra_args: --files ${{ steps.modified-files.outputs.modified_files }}