add maggma dependency; comments cleanup #50
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: testing | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
cache: pip | |
- name: Run pre-commit | |
run: | | |
pip install pre-commit | |
pre-commit run | |
test: | |
needs: lint | |
strategy: | |
max-parallel: 6 | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }}${{ matrix.dev }} | |
- name: Install pytest | |
run: | | |
python -m pip install pytest pytest-cov | |
- name: Run tests | |
run: | | |
pip install -e . | |
pytest --cov=src/pyEQL --cov-report=xml | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Build docs | |
run: tox -e docs |