Skip to content

Changes to openff-qcsubmit to use next QCFractal #812

Changes to openff-qcsubmit to use next QCFractal

Changes to openff-qcsubmit to use next QCFractal #812

Workflow file for this run

name: lint
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
python-version: '3.8'
- name: Install the package
run: |
python setup.py develop --no-deps
- name: Install isort / black
run: |
pip install isort black
- name: Run isort
run: |
isort --recursive --check-only openff
- name: Run black
run: |
black openff --check