Skip to content

Handle multiline TITLE and new-style EXPDTA record #60

Handle multiline TITLE and new-style EXPDTA record

Handle multiline TITLE and new-style EXPDTA record #60

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.11']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest flake8 modelcif codespell
- name: Test
run: |
py.test .
flake8 .
codespell --skip="*.cif,*.pdb"