Skip to content

feat(predictor): Add support for denylisting accounts #59

feat(predictor): Add support for denylisting accounts

feat(predictor): Add support for denylisting accounts #59

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
name: Run tests and build distribution
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install tox wheel setuptools
- name: Run lint
run: >-
tox -e lint
- name: Run tests
run: >-
tox -e py
build-and-publish:
name: Build and optionally publish a distribution
runs-on: ubuntu-latest
needs: test # the test job must have been successful
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Dependencies
run: |
pip install wheel setuptools
- name: Build distribution
run: >-
make dist
- name: Publish distribution package to PyPI (on tags starting with v)
if: startsWith(github.event.ref, 'refs/tags/v')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_REPOSITORY_URL: https://upload.pypi.org/legacy/
run: >-
pip install twine && twine upload dist/*