Skip to content

bump version before publishing #5

bump version before publishing

bump version before publishing #5

Workflow file for this run

name: CI Pipeline
on:
- push
jobs:
format:
if: ${{ false }} # not ready yet
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: "3.12"
- name: Install tox
run: python -m pip install tox
- name: Run black
run: tox -e format
lint:
if: ${{ false }} # not ready yet
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: "3.12"
- name: Install tox
run: python -m pip install tox
- name: Run flake8
run: tox -e lint
typecheck:
if: ${{ false }} # not ready yet
name: Type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: "3.12"
- name: Install tox
run: python -m pip install tox
- name: Run mypy
run: python -m tox -e typecheck
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python:
- version: "3.12"
toxenv: "py312"
- version: "3.8"
toxenv: "py38"
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: ${{ matrix.python.version }}
- name: Install tox
run: python -m pip install tox
- name: Run pytest
run: tox -e ${{ matrix.python.toxenv }}
build_source_dist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
python-version: "3.12"
- name: Install build
run: python -m pip install build
- name: Run build
run: python -m build --sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
publish:
name: Publish package
if: startsWith(github.event.ref, 'refs/tags/v')
needs:
# - format
# - lint
# - typecheck
- test
- build_source_dist
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: ./dist # Update to match root of package
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}