Solution: adjust vol for T and P changes + add tests #67
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: | |
branches: | |
- main | |
- develop | |
paths-ignore: | |
- 'docs/' | |
- CHANGELOG.md | |
pull_request: | |
branches: | |
- main | |
- develop | |
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 test requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e ".[testing]" | |
- name: Run tests | |
run: | | |
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 |