Skip to content

chore(deps): bump third-party/abseil-cpp from 2fca641 to 8028a87 #155

chore(deps): bump third-party/abseil-cpp from 2fca641 to 8028a87

chore(deps): bump third-party/abseil-cpp from 2fca641 to 8028a87 #155

Workflow file for this run

#
# Project nurikit - Copyright 2023 SNU Compbio Lab.
# SPDX-License-Identifier: Apache-2.0
#
name: Test PR
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/pr-test.yaml"
- ".github/workflows/_cpp-test-and-coverage.yaml"
- "cmake/**"
- "include/**"
- "scripts/check_coverage.sh"
- "src/**"
- "test/**"
- "third-party/**"
- "CMakeLists.txt"
- "!**.clang*"
types:
- opened
- reopened
- synchronize
- ready_for_review
defaults:
run:
shell: bash
jobs:
check-want-test:
if: ${{ !github.event.pull_request.draft }}
uses: ./.github/workflows/_check-want-test.yaml
run-clang-tools:
needs: [check-want-test]
if: ${{ needs.check-want-test.outputs.want-test == 'true' }}
uses: ./.github/workflows/_run-clang-tools.yaml
test-and-coverage:
needs: [check-want-test, run-clang-tools]
if: ${{ always() && needs.check-want-test.outputs.want-test == 'true' && (needs.run-clang-tools.result == 'success' || needs.run-clang-tools.result == 'skipped' ) }}
uses: ./.github/workflows/_cpp-test-and-coverage.yaml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true