Skip to content

Made column names more aligned with the FAIR data principles and adju… #17

Made column names more aligned with the FAIR data principles and adju…

Made column names more aligned with the FAIR data principles and adju… #17

Workflow file for this run

name: Python Code Style
on: [push, pull_request]
jobs:
pycodestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pycodestyle
- name: Run pycodestyle
run: pycodestyle . --max-line-length=200