Skip to content

feat(core/geometry): add option to consider reflection in qcp algorithm #540

feat(core/geometry): add option to consider reflection in qcp algorithm

feat(core/geometry): add option to consider reflection in qcp algorithm #540

#
# Project NuriKit - Copyright 2023 SNU Compbio Lab.
# SPDX-License-Identifier: Apache-2.0
#
name: Common PR reviews
on:
pull_request:
branches:
- main
- "release/**"
types:
- opened
- reopened
- synchronize
- ready_for_review
defaults:
run:
shell: bash
jobs:
commitlint:
if: ${{ !endsWith(github.triggering_actor, '[bot]') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install commitlint
run: npm install commitlint@latest
- name: Validate commit messages
run: |
npx commitlint --verbose \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true