update doi in bibliography #322
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: Python ci | |
on: | |
push: | |
branches: | |
- main | |
env: | |
DRY_RUN: false | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
pip install flake8 pytest build | |
if [ -f requirements.txt ] | |
then | |
pip install \ | |
-r requirements.txt | |
pip install pytest-cov | |
fi | |
- name: Lint with flake8 | |
run: | | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pytest | |
run: | | |
PYTHONPATH=./chemotools pytest --cov | |
- name: Python build package | |
run: | | |
python -m build | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |