Skip to content

chore(deps): bump third-party/googletest from 33af80a to 305e5a2 #128

chore(deps): bump third-party/googletest from 33af80a to 305e5a2

chore(deps): bump third-party/googletest from 33af80a to 305e5a2 #128

Workflow file for this run

#
# Project NuriKit - Copyright 2023 SNU Compbio Lab.
# SPDX-License-Identifier: Apache-2.0
#
name: Lint PR
on:
pull_request:
branches:
- main
- "release/**"
types:
- opened
- reopened
- synchronize
- ready_for_review
defaults:
run:
shell: bash
jobs:
check-files:
runs-on: ubuntu-latest
outputs:
config-changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: changed-files
uses: tj-actions/changed-files@v44
with:
since_last_remote_commit: true
files: |
**.clang-*
scripts/run_clang_tools.sh
run-clang-tools:
needs: [check-files]
uses: ./.github/workflows/_run-clang-tools.yaml
with:
files-changed-only: ${{ needs.check-files.outputs.config-changed == 'false' }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true