Skip to content

mfi-M3GNet implementation is added #269

mfi-M3GNet implementation is added

mfi-M3GNet implementation is added #269

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: pip
cache-dependency-path: requirements-ci.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-ci.txt --quiet
- name: pydocstyle
run: |
pydocstyle --count m3gnet
- name: pylint
run: |
pylint m3gnet
- name: black
run: |
black --version
black --check --diff --color m3gnet
- name: flake8
run: |
flake8 --version
flake8 --count --show-source --statistics m3gnet
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=20 --statistics m3gnet