Skip to content

data: Correct variety of issues with isotherms from 10.1039/c5ce0001… #76

data: Correct variety of issues with isotherms from 10.1039/c5ce0001…

data: Correct variety of issues with isotherms from 10.1039/c5ce0001… #76

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install python dependencies
run: |
pip install -r .github/requirements.txt
- name: Run pre-commit
run: |
pre-commit install
pre-commit run --all-files || ( git status --short ; git diff ; exit 1 )