Tweaked get_g_evolution and get_dg_evolution and added unit tests for… #416
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
push: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
- uses: actions/setup-python@v2.2.2 | |
with: | |
python-version: '3.9' | |
- name: Install the package | |
run: | | |
python setup.py develop --no-deps | |
- name: Install flake8 | |
run: | | |
pip install flake8 | |
- name: Run flake8 | |
run: | | |
flake8 ensemble_md |