Skip to content

Handle missing template file or scheme info #69

Handle missing template file or scheme info

Handle missing template file or scheme info #69

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.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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"