Skip to content

add weighting to weighted goodmans er plot #540

add weighting to weighted goodmans er plot

add weighting to weighted goodmans er plot #540

name: unittests & auto-publish
on: [push, pull_request, workflow_dispatch]
jobs:
pytest-job:
runs-on: ubuntu-latest
timeout-minutes: 30
concurrency: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip --version
- run: pip install .
- run: pip install -r requirements-dev.txt
- run: pip freeze
- name: Run linters
run: |
./scripts/lint.sh
- name: Test with pytest
run: |
./scripts/test.sh
# Auto-publish when version is increased
publish-job:
# Only try to publish if:
# * Repo is self (prevents running from forks)
# * Branch is `main`
if: |
github.repository == 'mggg/ecological-inference'
&& github.ref == 'refs/heads/main'
needs: pytest-job # Only publish after tests are successful
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 30
steps:
# Publish the package (if local `__version__` > pip version)
- uses: etils-actions/pypi-auto-publish@v1
with:
pypi-token: ${{ secrets.PYPI_API_TOKEN }}
gh-token: ${{ secrets.GITHUB_TOKEN }}
parse-changelog: false
pkg-name: pyei