Skip to content

Update outputs to match latest python-modelcif #57

Update outputs to match latest python-modelcif

Update outputs to match latest python-modelcif #57

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@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest flake8 modelcif
- name: Test
run: |
py.test .
flake8 .