Skip to content

data: added isotherms (tabular) from 10.1016/j.scitotenv.2022.157395,… #78

data: added isotherms (tabular) from 10.1016/j.scitotenv.2022.157395,…

data: added isotherms (tabular) from 10.1016/j.scitotenv.2022.157395,… #78

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 )