Skip to content

Bump black from 22.6.0 to 24.3.0 #10

Bump black from 22.6.0 to 24.3.0

Bump black from 22.6.0 to 24.3.0 #10

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Dependencies
run: make install
- name: Lint
run: make lint
- name: Tests
run: make test
publish:
needs: test
if: "success() && startsWith(github.ref, 'refs/tags/')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v1
with:
python-version: '3.9'
- name: install
run: |
make install
pip install -U wheel twine
- name: build
run: python setup.py sdist bdist_wheel
- run: twine check dist/*
- name: upload to pypi
run: twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_password }}