Skip to content

chore(deps): bump third-party/googletest from 4a1a299 to cc36671 #2

chore(deps): bump third-party/googletest from 4a1a299 to cc36671

chore(deps): bump third-party/googletest from 4a1a299 to cc36671 #2

Workflow file for this run

#
# Project nurikit - Copyright 2023 SNU Compbio Lab.
# SPDX-License-Identifier: Apache-2.0
#
name: Test main branch
on:
push:
branches:
- main
paths:
- ".github/workflows/main-test.yaml"
- ".github/workflows/_cpp-test-and-coverage.yaml"
- "cmake/**"
- "include/**"
- "scripts/check_coverage.sh"
- "src/**"
- "test/**"
- "third-party/**"
- ".clang-*"
- "CMakeLists.txt"
defaults:
run:
shell: bash
jobs:
check-want-test:
uses: ./.github/workflows/_check-want-test.yaml
run-clang-tools:
needs: [check-want-test]
if: ${{ needs.check-want-test.outputs.want-test }}
uses: ./.github/workflows/_run-clang-tools.yaml
test-and-coverage:
needs: [check-want-test]
if: ${{ needs.check-want-test.outputs.want-test }}
uses: ./.github/workflows/_cpp-test-and-coverage.yaml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true