feat(fmt/mmcif): implement mmCif parser #657
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: 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 |