Add mmCIF to PDB conversion script #87
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
# Same as `code-quality-pr.yaml` but triggered on commit to main branch | |
# and runs on all files (instead of only the changed ones) | |
name: Code Quality Main | |
on: | |
push: | |
branches: [main] | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Run pre-commits | |
uses: pre-commit/action@v2.0.3 |