chore(deps): bump third-party/googletest from f3c355f
to 7d76a23
#529
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Project NuriKit - Copyright 2023 SNU Compbio Lab. | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: Build test wheel for PR | |
on: | |
pull_request: | |
branches: | |
- main | |
- "release/**" | |
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 | |
test-build-linux: | |
needs: [check-want-test] | |
if: ${{ needs.check-want-test.outputs.want-test == 'true' }} | |
uses: ./.github/workflows/_wheel-build.yaml | |
with: | |
python: cp38-manylinux_x86_64 | |
test-build-mac-intel: | |
needs: [check-want-test] | |
if: ${{ needs.check-want-test.outputs.want-test == 'true' }} | |
uses: ./.github/workflows/_wheel-build.yaml | |
with: | |
python: cp38-macosx_x86_64 | |
cpp_test: true | |
test-build-mac-arm: | |
needs: [check-want-test] | |
if: ${{ needs.check-want-test.outputs.want-test == 'true' }} | |
uses: ./.github/workflows/_wheel-build.yaml | |
with: | |
python: cp38-macosx_arm64 | |
cpp_test: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |